@font-face {
    font-family: "Gilroy";
    src: url("font/Gilroy-Light.woff") format("woff");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("font/Gilroy-Regular.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("font/Gilroy-Medium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("font/Gilroy-Bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Gilroy";
    src: url("font/Gilroy-Heavy.woff") format("woff");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --color-page: #020607;
    --color-text: #ffffff;
    --color-muted: rgba(255, 255, 255, 0.8);
    --color-note: rgba(255, 255, 255, 0.48);
    --color-accent: #0078b7;
    --color-accent-rgb: 0, 120, 183;
    --section-logo-size: 96px;
    --section-logo-size-tablet: 84px;
    --section-logo-size-mobile: 72px;
    --shadow-soft: 0 24px 64px rgba(0, 0, 0, 0.35);
    --shell-width: 1340px;
    --header-height: 78px;
    --section-edge-fade-size: clamp(56px, 20vw, 150px);
    --section-edge-fade-color: rgba(16, 16, 16, 0.52);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    margin: 0;
    min-width: 320px;
    font-family: "Gilroy", sans-serif;
    color: var(--color-text);
    background: #161616
}

h1 {
    margin: 0;
}

img {
    display: block;
    max-width: 100%;
}

.page {
    min-height: 100vh;
    padding-top: var(--header-height);
}

/* Только первая секция занимает минимум 1 экран */
.page > section:first-of-type {
    min-height: 100vh;
}

.page > section {
    position: relative;
    isolation: isolate;
}

.page > section > * {
    position: relative;
    z-index: 1;
}

.page > section::before,
.page > section::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: var(--section-edge-fade-size);
    pointer-events: none;
    z-index: 3;
}

.page > section:not(:first-of-type)::before {
    top: 0;
    background: linear-gradient(
        to bottom,
        var(--section-edge-fade-color) 0%,
        rgba(0, 0, 0, 0.16) 38%,
        rgba(0, 0, 0, 0) 100%
    );
}

.page > section:not(:last-of-type)::after {
    bottom: 0;
    background: linear-gradient(
        to top,
        var(--section-edge-fade-color) 0%,
        rgba(0, 0, 0, 0.16) 38%,
        rgba(0, 0, 0, 0) 100%
    );
}

/* Чтобы якорные ссылки не прятались под фиксированной шапкой */
section[id] {
    scroll-margin-top: calc(var(--header-height) + 12px);
}

.hero {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("assets/Hero_page/Background_1.png") center / cover no-repeat;

}

.hero__shell {
    position: relative;
    width: min(100%, var(--shell-width));
    min-height: clamp(540px, 50.4vw, 634px);
    display: grid;
    grid-template-columns: clamp(170px, 16vw, 210px) minmax(360px, 1fr) clamp(250px, 27vw, 360px);
    overflow: hidden;
    isolation: isolate;
}

.hero__shell::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.hero__social,
.hero__content {
    position: relative;
    z-index: 2;
}

.hero__social {
    padding: clamp(24px, 3vw, 34px) clamp(16px, 2vw, 28px) clamp(28px, 3vw, 38px) 24px;
    display: flex;
    flex-direction: column;
    gap: clamp(24px, 2.6vw, 34px);
}

.hero__social-title {
    margin: 0;
    max-width: 20ch;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 0.92;
    letter-spacing: -0.04em;
}

.hero__social-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: clamp(14px, 1.8vw, 20px);
}

.social-card {
    display: flex;
    align-items: center;
    gap: clamp(12px, 1.4vw, 16px);
}

.social-card__icon {
    width: 42px;
    height: 42px;
    cursor: pointer;
    flex: 0 0 auto;
}

.social-card__qr {
    width: clamp(68px, 7vw, 86px);
    flex: 0 0 auto;
}

.hero__league-logo {
    width: clamp(110px, 10vw, 144px);
    margin-top: auto;
}

.hero__visual {
    position: relative;
    z-index: 1;
    margin: 0 -88px 0 -70px;
    min-height: 100%;
}

.hero__photo {
    margin: auto;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (min-width: 1025px) {
    /* На десктопе не растягиваем фото на всю высоту.
       Картинка уменьшается пропорционально, при этом сетка боковых блоков не меняется. */
    .hero__visual {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero__photo {
        height: auto;
        width: auto;
        max-width: 100%;
        max-height: 85%;
        object-fit: contain;
    }
}

.hero__content {
    padding: clamp(28px, 4vw, 46px) 28px clamp(28px, 4vw, 42px) 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: clamp(28px, 3vw, 40px);
}

.hero__copy {
    max-width: 320px;
}

.hero__title {
    margin-bottom: 72px;
    font-size: 5.2rem;
    line-height: 0.88;
    text-transform: uppercase;
}

.hero__summary {
    margin: 0 0 clamp(14px, 1.6vw, 18px);
    font-size: 1.55rem;
    line-height: 1.12;
    color: var(--color-muted);
}

.hero__summary strong {
    display: block;
    font-weight: 700;
    color: var(--color-text);
}

.hero__note {
    margin: 0;
    max-width: 21rem;
    font-size: 0.95rem;
    line-height: 1.28;
    color: var(--color-note);
}

.hero__rfu-logo {
    width: clamp(164px, 19vw, 216px);
    margin-top: auto;
}

@media (max-width: 1366px) {
    .hero__shell {
        min-height: clamp(500px, 45vw, 604px);
        grid-template-columns: clamp(160px, 14.5vw, 205px) minmax(340px, 1fr) clamp(230px, 26vw, 340px);
    }

    .hero__visual {
        margin: 0 -82px 0 -64px;
    }

    .hero__title {
        margin-bottom: 64px;
        font-size: 4rem;
    }

    .hero__social-title {
        font-size: 2.05rem;
    }

    .hero__summary {
        font-size: 1.45rem;
    }

    .hero__note {
        font-size: 0.9rem;
    }
}

@media (max-width: 1100px) {
    .hero__shell {
        grid-template-columns: clamp(150px, 17vw, 190px) minmax(280px, 1fr) clamp(220px, 28vw, 320px);
    }

    .hero__visual {
        margin: 0 -56px 0 -40px;
    }
}

@media (max-width: 1024px) {
    .hero__shell {
        min-height: clamp(520px, 48vw, 610px);
        grid-template-columns: clamp(150px, 16.2vw, 185px) minmax(260px, 1fr) clamp(210px, 27vw, 305px);
    }

    .hero__visual {
        margin: 0 -52px 0 -36px;
    }

    .hero__title {
        margin-bottom: 56px;
        font-size: 3.6rem;
    }

    .hero__content {
        gap: clamp(22px, 2.6vw, 32px);
    }

    .hero__rfu-logo {
        width: clamp(148px, 17vw, 196px);
    }

    .hero__social {
        align-items: center;
    }

    .hero__social-title {
        max-width: none;
        text-align: center;
        margin-left: 0;
        margin-right: 0;
        font-size: 1.9rem;
    }

    /* Соц. карточки в ряд на планшетах */
    .hero__social-list {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .hero__summary {
        font-size: 1.3rem;
    }

    .hero__note {
        font-size: 0.85rem;
    }

    /* В карточках соцсетей: сверху QR, снизу иконка */
    .social-card {
        flex-direction: column-reverse;
        gap: 10px;
        align-items: center;
        justify-content: space-between;
        height: 100%;
    }
}

@media (max-width: 1024px) and (min-width: 861px) {
    /* Уменьшаем центральную картинку в диапазоне 861..1024 */
    .hero__visual {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero__photo {
        height: auto;
        width: auto;
        max-width: 100%;
        max-height: 72%;
        object-fit: contain;
    }
}

@media (max-width: 860px) {
    .hero {
        min-height: auto;
    }

    .hero__shell {
        min-height: auto;
        grid-template-columns: 1fr;
        background: url("assets/Hero_page/Background_1.png") center / cover no-repeat;
    }

    .hero__content {
        order: 1;
    }

    .hero__visual {
        order: 2;
    }

    .hero__social {
        order: 3;
    }

    .hero__content {
        padding: 32px 24px 0;
        gap: 24px;
    }

    .hero__copy {
        max-width: 100%;
    }

    .hero__visual {
        min-height: clamp(310px, 62vw, 480px);
        margin: 0;
        padding: 20px 24px 0;
    }

    .hero__photo {
        clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
        border-radius: 0 18px 18px 0;
    }

    .hero__social {
        padding: 24px 24px 32px;
        gap: 24px;
    }

    .hero__league-logo,
    .hero__rfu-logo {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .hero__title {
        margin-bottom: 48px;
        font-size: 4.2rem;
    }

    .hero__content {
        padding: 28px 20px 0;
        gap: 20px;
    }

    .hero__visual {
        min-height: clamp(280px, 60vw, 440px);
        padding: 16px 20px 0;
    }

    .hero__photo {
        clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
        border-radius: 0 16px 16px 0;
    }

    .hero__social {
        padding: 20px 20px 28px;
        gap: 20px;
    }

    .hero__rfu-logo {
        width: clamp(140px, 28vw, 190px);
    }

    .hero__social-title {
        font-size: 1.75rem;
    }

    .hero__summary {
        font-size: 1.18rem;
    }

    .hero__note {
        font-size: 0.8rem;
    }
}

@media (max-width: 560px) {
    .hero__social-title {
        max-width: none;
        font-size: 1.7rem;
    }

    .hero__social-list {
        gap: 12px;
    }

    .social-card {
        gap: 12px;
    }

    .hero__title {
        font-size: 3.4rem;
    }

    .hero__summary {
        font-size: 1.05rem;
    }

    .hero__note {
        font-size: 0.84rem;
        max-width: 100%;
    }
}

@media (max-width: 365px) {
    .hero__social-title {
        font-size: 1.45rem;
    }

    .hero__title {
        font-size: 3rem;
        margin-bottom: 28px;
    }

    .hero__summary {
        font-size: 1rem;
    }

    .hero__note {
        font-size: 0.82rem;
        max-width: 100%;
    }

    .hero__content {
        padding: 22px 16px 0;
        gap: 16px;
    }

    .hero__social {
        padding: 18px 16px 24px;
        gap: 16px;
    }

    .hero__social-list {
        gap: 10px;
    }

    .social-card {
        gap: 10px;
    }

    .social-card__icon {
        width: 36px;
    }

    .social-card__qr {
        width: 58px;
    }

    .hero__visual {
        min-height: 240px;
        padding: 14px 16px 0;
    }

    .hero__photo {
        clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
        border-radius: 0 14px 14px 0;
    }

    .hero__rfu-logo {
        width: 132px;
    }
}

.map-page {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("assets/Map_page/Background_2.png") center / cover no-repeat;
    overflow: hidden;
    isolation: isolate;
}

.map-page__shell {
    position: relative;
    width: 100%;
    min-height: clamp(600px, 52vw, 680px);
    display: grid;
    justify-content: center;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: clamp(28px, 3vw, 44px);
    padding: 56px 80px 44px;
    overflow: hidden;
}

.map-page__map-column {
    display: grid;
    align-content: start;
    gap: clamp(28px, 2.8vw, 38px);
}

.map-page__header {
    display: grid;
    gap: 10px;
}

.map-page__title {
    margin: 0;
    font-size: 4.1rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.map-page__subtitle {
    margin: 0;
    max-width: 90%;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.14;
    text-transform: uppercase;
}

.map-page__subtitle--compact {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.map-page__diamonds {
    display: inline-flex;
    width: 12px;
    height: 12px;
}

.map-page__diamonds img {
    width: 100%;
    height: 100%;
}

.map-page__accent,
.map-page__count,
.structure-panel__accent {
    color: var(--color-accent);
}

.map-page__map-layout {
    display: grid;
    grid-template-columns: minmax(210px, 246px) minmax(260px, 1fr);
    align-items: center;
    gap: clamp(24px, 2.2vw, 38px);
}

.map-page__cities {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: clamp(11px, 1.1vw, 15px);
}

.map-page__city {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(0.92rem, 1.08vw, 1.12rem);
    font-weight: 500;
    line-height: 1.15;
}

.map-page__city img {
    width: 22px;
    height: 22px;
    flex: 0 0 auto;
}

.map-page__map-figure {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-page__map-figure img {
    width: min(100%, 500px);
    height: auto;
    filter: drop-shadow(0 0 18px rgba(var(--color-accent-rgb), 0.2));
}

.map-page__structure-column {
    display: grid;
    align-content: start;
    gap: 20px;
}

.structure-panel__header {
    display: grid;
    gap: 8px;
}

.structure-panel__title {
    margin: 0;
    font-size: 4.1rem;
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.structure-panel__subtitle {
    margin: 0;
    max-width: 100%;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.14;
    text-transform: uppercase;
}

.structure-panel__content {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 22px;
    align-items: start;
}

.structure-panel__groups {
    display: grid;
    gap: 18px;
    z-index: 10;
    position: relative;
}

.structure-group {
    display: grid;
    gap: 8px;
}

.structure-group--single {
    gap: 0;
}

.structure-group__title {
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1.9rem;
    font-weight: 700;
    line-height: 1.08;
    text-transform: uppercase;
}

.structure-group__title img {
    width: 28px;
    height: 28px;
    flex: 0 0 auto;
    margin-top: 1px;
}

.structure-group__list {
    margin: 0;
    padding: 0 0 0 46px;
    list-style: none;
    display: grid;
    gap: 4px;
}

.structure-group__list li {
    position: relative;
    font-size: clamp(0.98rem, 1.28vw, 1.25rem);
    font-weight: 700;
    line-height: 1.08;
}

.structure-group__list li::before {
    content: "";
    position: absolute;
    top: 0.28em;
    left: -22px;
    width: 10px;
    height: 10px;
    background: url("assets/common/Four_diamonds.svg") center / contain no-repeat;
}

.structure-gallery {
    position: relative;
    min-height: 540px;
    overflow: visible;
}

.structure-gallery__corner {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 0;
    width: auto;
    height: 100%;
    opacity: 0.98;
    pointer-events: none;
}

.structure-gallery__photo {
    position: absolute;
    right: 12px;
    z-index: 1;
    margin: 0;
    width: 300px;
}

.structure-gallery__photo img {
    width: 100%;
    height: auto;
}

.structure-gallery__photo--top {
    top: -6px;
    left: 70px;
}

.structure-gallery__photo--middle {
    top: 186px;
    left: 8px;
}

.structure-gallery__photo--bottom {
    top: 368px;
}

.structure-gallery__logo {
    position: absolute;
    right: -30px;
    bottom: -50px;
    z-index: 2;
    width: var(--section-logo-size);
}

@media (min-width: 1367px) {
    /* На десктопе текст должен быть поверх боковых фото */
    .structure-panel__header,
    .structure-panel__groups {
        position: relative;
        z-index: 5;
    }
}

@media (max-width: 1366px) {
    .map-page__shell {
        grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
    }

    .map-page__map-layout {
        grid-template-columns: minmax(190px, 228px) minmax(220px, 1fr);
    }

    .structure-panel__content {
        grid-template-columns: minmax(0, 1fr) 250px;
    }

    .structure-gallery__photo {
        width: 224px;
    }

    .structure-gallery__photo--middle {
        top: 162px;
    }

    .structure-gallery__photo--bottom {
        top: 320px;
    }
}

@media (max-width: 1024px) {
    .map-page {
        min-height: auto;
    }

    .map-page__shell {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 36px 40px 32px;
    }

    .structure-panel__content {
        grid-template-columns: minmax(0, 1fr) 280px;
    }
}

@media (max-width: 768px) {
    .map-page__shell {
        padding: 32px 20px 28px;
    }

    .map-page__map-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .map-page__map-figure {
        justify-content: flex-start;
    }

    .structure-panel__content {
        grid-template-columns: 1fr;
    }

    .structure-gallery {
        min-height: 520px;
    }

    .structure-gallery__photo {
        right: 20px;
        width: min(260px, 68vw);
    }
}

@media (max-width: 365px) {
    .map-page__title,
    .structure-panel__title {
        font-size: clamp(2.15rem, 11vw, 3rem);
    }

    .map-page__subtitle,
    .structure-panel__subtitle {
        font-size: 1rem;
    }

    .map-page__city,
    .structure-group__list li {
        font-size: 0.95rem;
    }

    .structure-group__title {
        font-size: 1.08rem;
    }

    .structure-gallery {
        min-height: auto;
        display: grid;
        gap: 14px;
    }

    .structure-gallery__corner {
        display: none;
    }

    .structure-gallery__photo,
    .structure-gallery__photo--top,
    .structure-gallery__photo--middle,
    .structure-gallery__photo--bottom {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
    }

    .structure-gallery__logo {
        position: relative;
        right: auto;
        bottom: auto;
        margin-left: auto;
        width: var(--section-logo-size-tablet);
    }
}

@media (max-width: 1366px) {
    .structure-gallery {
        display: none;
    }

    .structure-gallery__corner {
        display: none;
    }
}

.about-page {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("assets/About_page/Background_3.png") center / cover no-repeat;

}

.about-page__shell {
    width: min(100%, 100%);
    min-height: clamp(620px, 50.5vw, 744px);
    display: grid;
    grid-template-columns: 54.6% 45.4%;
    overflow: hidden;
}

.about-page__field-column {
    z-index: 1;
    position: relative;
    background: url("assets/About_page/Football_field.png") center / 100% 100% no-repeat;
    overflow: hidden;
}

.field-card {
    position: absolute;
    margin: 0;
}

.field-card img {
    width: 100%;
    height: auto;
}

.field-card__label {
    position: absolute;
    top: -10%;
    right: -10%;
    padding: 10px 45px;
    background: black;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
}

.field-card--top {
    top: 7.8%;
    left: 6%;
    width: 300px;
}

.field-card--middle {
    top: 37.4%;
    left: 0.6%;
    width: 300px;
}

.field-card--bottom {
    left: 0;
    bottom: 8.4%;
    width: 250px;
}

.field-copy {
    position: absolute;
    top: 33.8%;
    left: 32.5%;
    width: 43.5%;
    display: grid;
    gap: 8px;
    text-transform: uppercase;
    font-style: italic;
}

.field-copy__eyebrow,
.field-copy__main,
.field-copy__sub {
    margin: 0;
    font-weight: 700;
    line-height: 0.95;
}

.field-copy__eyebrow {
    font-size: 24px;
    margin-left: 20px;
}

.field-copy__main {
    font-size: 32px;
    margin-left: 5px;
}

.field-copy__sub {
    margin-top: 10px;
    font-size: 24px;
}

.about-page__panel {
    position: relative;
    padding: 8.4% 0 4.3% 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 282px;
    gap: 18px;
    overflow: visible;
}

.about-page__content {
    width: 80%;
    display: grid;
    align-content: start;
    gap: 22px;
}

.about-page__header {
    display: grid;
    gap: 6px;
}

.about-page__title {
    margin: 0;
    font-size: 4rem;
    font-weight: 700;
    line-height: 0.96;
    text-transform: uppercase;
}

.about-page__year {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1;
    color: var(--color-accent);
    text-transform: uppercase;
}

.about-stats {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
}

.about-stat {
    display: flex;
    align-items: baseline;
    gap: 10px;
    text-transform: uppercase;
}

.about-stat__arrow,
.about-stat__number {
    color: var(--color-accent);
    font-weight: 600;
    line-height: 0.9;
}

.about-stat__arrow {
    font-size: 3rem;
}

.about-stat__number {
    font-size: 3rem;
    letter-spacing: -0.05em;
}

.about-stat__label {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.06;
}

.about-mission {
    display: grid;
    gap: 10px;
}

.about-mission__title {
    height: 61px;
    position: relative;
    margin: 0;
    padding: 8px 16px 8px;
    background: var(--color-accent);
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: end;
}

.about-mission__title::before {
    content: "";
    position: absolute;
    top: 0;
    z-index: 0;
    right: 100%;
    width: 1000px;
    background: var(--color-accent);
    height: 61px;
    opacity: 100;
}

.about-mission__lead,
.about-mission__text,
.about-mission__note {
    margin: 0;
}

.about-mission__lead {
    font-size: 1.48rem;
    font-weight: 700;
    line-height: 1.06;
    color: var(--color-accent);
    text-transform: uppercase;
}

.about-mission__text {
    font-size: 1.06rem;
    font-weight: 500;
    line-height: 1.22;
    position: relative;
    z-index: 10;
}

.about-mission__text strong {
    color: var(--color-accent);
}

.about-mission__note {
    margin-top: 12px;
    font-size: 0.96rem;
    font-style: italic;
    line-height: 1.22;
    color: rgba(255, 255, 255, 0.88);
}

.about-gallery {
    display: flex;
    flex-direction: column;
    position: relative;
    height: auto;
    gap: 5%;
}

.about-gallery__corner {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    height: 100%;
    width: auto;
    pointer-events: none;
}

.about-gallery__photo {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    margin: 0;
}

.about-gallery__photo:nth-of-type(2) {
    width: calc(100%);
    left: -20%;
}
.about-gallery__photo:nth-of-type(3) {
    width: calc(100%);
    left: -40%;
}

.about-gallery__photo img {
    width: 100%;
    height: auto;
}

.about-gallery__logo {
    position: absolute;
    right: 18px;
    bottom: 14px;
    z-index: 2;
    width: var(--section-logo-size);
}

@media (max-width: 1366px) {
    .field-copy {
        left: 41%;
        width: 45%;
    }

    .about-page__panel {
        grid-template-columns: minmax(0, 1fr) 252px;
    }

    .about-gallery__photo--top {
        width: 214px;
    }

    .about-gallery__photo--middle,
    .about-gallery__photo--bottom {
        width: 244px;
    }

    .about-gallery__photo--middle {
        top: 224px;
    }

    .about-gallery__photo--bottom {
        top: 430px;
    }

    /* Шрифты без clamp (адаптация по брейкпоинту) */
    .about-page__year {
        font-size: 1.12rem;
    }

    .about-stat__arrow {
        font-size: 2.85rem;
    }

    .about-stat__label {
        font-size: 1.15rem;
    }

    .about-mission__lead {
        font-size: 1.42rem;
    }

    .about-mission__text {
        font-size: 1.02rem;
    }

    .about-mission__note {
        font-size: 0.9rem;
    }
}

@media (max-width: 1365px) {
    /* about-page: скрываем блоки галереи и левого поля */
    .about-page__shell {
        grid-template-columns: 1fr !important;
    }

    .about-page__field-column {
        display: none !important;
    }

    .about-page__panel {
        grid-template-columns: 1fr !important;
    }

    .about-gallery,
    .about-gallery__corner {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .about-page {
        min-height: auto;
    }

    .about-page__shell {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .about-page__field-column {
        min-height: 760px;
    }

    .about-page__panel {
        grid-template-columns: minmax(0, 1fr) 300px;
        padding: 38px 24px 34px;
    }

    /* Шрифты без clamp */
    .about-page__year {
        font-size: 1.05rem;
    }

    .about-stat__arrow {
        font-size: 2.6rem;
    }

    .about-stat__label {
        font-size: 1.05rem;
    }

    .about-mission__lead {
        font-size: 1.32rem;
    }

    .about-mission__text {
        font-size: 0.98rem;
    }

    .about-mission__note {
        font-size: 0.86rem;
    }
}

@media (max-width: 768px) {
    .about-page__field-column {
        min-height: 700px;
    }

    .field-copy {
        right: 24px;
        left: 44%;
        max-width: none;
    }

    .about-page__panel {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-gallery {
        min-height: 700px;
    }

    .about-gallery__photo--top {
        width: min(234px, 74%);
    }

    .about-gallery__photo--middle,
    .about-gallery__photo--bottom {
        width: min(264px, 92%);
    }

    /* Шрифты без clamp */
    .about-page__year {
        font-size: 1rem;
    }

    .about-stat__arrow {
        font-size: 2.4rem;
    }

    .about-stat__label {
        font-size: 1rem;
    }

    .about-mission__lead {
        font-size: 1.22rem;
    }

    .about-mission__title {
        font-size: 1.6rem;
    }

    .about-mission__text {
        font-size: 0.92rem;
    }

    .about-mission__note {
        font-size: 0.82rem;
    }
}

@media (max-width: 365px) {
    .about-page__field-column {
        min-height: auto;
        padding: 24px 20px 28px;
        display: grid;
        gap: 18px;
    }

    .field-card,
    .field-card--top,
    .field-card--middle,
    .field-card--bottom {
        position: relative;
        inset: auto;
        width: 100%;
    }

    .field-card__label {
        right: 16px;
        top: -10px;
        padding-inline: 18px;
        font-size: 0.82rem;
        white-space: normal;
    }

    .field-copy {
        position: relative;
        top: auto;
        right: auto;
        left: auto;
        max-width: none;
        margin-top: 8px;
    }

    .field-copy__eyebrow {
        font-size: 1.55rem;
    }

    .field-copy__main {
        font-size: 2.15rem;
    }

    .field-copy__sub {
        font-size: 1.15rem;
    }

    .about-page__panel {
        padding: 30px 20px 28px;
    }

    .about-page__title {
        font-size: 2.5rem;
    }

    .about-stat {
        gap: 10px;
    }

    .about-stat__number {
        font-size: 2.15rem;
    }

    .about-stat__label {
        font-size: 0.92rem;
    }

    /* Шрифты без clamp */
    .about-page__year {
        font-size: 0.95rem;
    }

    .about-stat__arrow {
        font-size: 2.1rem;
    }

    .about-mission__lead {
        font-size: 1.05rem;
    }

    .about-mission__text {
        font-size: 0.88rem;
    }

    .about-mission__note {
        font-size: 0.78rem;
    }

    .about-gallery {
        min-height: auto;
        display: grid;
        gap: 14px;
    }

    .about-gallery__corner {
        display: none;
    }

    .about-gallery__photo,
    .about-gallery__photo--top,
    .about-gallery__photo--middle,
    .about-gallery__photo--bottom {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
    }

    .about-gallery__logo {
        position: relative;
        right: auto;
        bottom: auto;
        margin-left: auto;
        width: var(--section-logo-size-tablet);
    }
}

.media-page {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("assets/Media_page/Background_4.png") center / cover no-repeat;
}

.media-page__shell {
    position: relative;
    width: min(100%, 100%);
    min-height: clamp(620px, 50.5vw, 744px);
    overflow: hidden;
}

.media-page__left-corner {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 81px;
    height: 314px;
}

.media-page__right-corner {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 0;
    width: auto;
    height: 419px;
}

.media-page__triangle {
    position: absolute;
    z-index: 0;
    width: auto;
    height: auto;
    pointer-events: none;
}

.media-page__triangle--top-large {
    top: 20px;
    left: 62.5%;
    width: 104px;
}

.media-page__triangle--top-small {
    top: 26px;
    right: 149px;
    width: 50px;
    transform: scaleX(-1);
}

.media-page__triangle--mid-top {
    top: 149px;
    right: 256px;
    width: 30px;
}

.media-page__triangle--mid-right {
    top: 240px;
    right: 44px;
    width: 32px;
}

.media-page__triangle--lower-left {
    top: 469px;
    left: 53.2%;
    width: 26px;
}

.media-page__triangle--bottom {
    right: 418px;
    bottom: 44px;
    width: 72px;
    transform: scaleX(-1);
}

.media-page__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 600px) minmax(250px, 280px);
    gap: clamp(44px, 4.8vw, 78px);
    padding: 56px 360px 44px 111px;
}

.media-page__main {
    display: grid;
    align-content: start;
    gap: 34px;
}

.media-page__header {
    display: grid;
}

.media-page__title {
    margin: 0;
    font-size: clamp(3.15rem, 4.45vw, 4rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.media-features {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px 26px;
    max-width: 590px;
}

.media-features__item {
    position: relative;
    padding-left: 20px;
    font-size: clamp(1rem, 1.18vw, 1.18rem);
    font-weight: 700;
    line-height: 1.02;
    text-transform: uppercase;
}

.media-features__item::before {
    content: "";
    position: absolute;
    top: 0.14em;
    left: 0;
    width: 10px;
    height: 10px;
    background: url("assets/common/Four_diamonds.svg") center / contain no-repeat;
}

.media-gallery {
    width: min(100%, 590px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.media-gallery__item {
    margin: 0;
    overflow: hidden;
    border: 1.5px solid var(--color-accent);
    aspect-ratio: 247 / 130;
}

.media-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-platforms {
    margin: 0;
    padding: 161px 0 0;
    list-style: none;
    display: grid;
    align-content: start;
    gap: 24px;
}

.platform-card {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

.platform-card__icon {
    display: block;
    width: 72px;
    height: auto;
    flex: 0 0 auto;
}

.platform-card--instagram .platform-card__icon {
    width: clamp(70px, 5.2vw, 76px);
}

.platform-card--vk .platform-card__icon {
    width: clamp(70px, 5vw, 74px);
}

.platform-card--youtube .platform-card__icon {
    width: clamp(72px, 5vw, 76px);
}

.platform-card--telegram .platform-card__icon {
    width: clamp(58px, 4vw, 62px);
}

.platform-card__metrics {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.platform-card__line,
.platform-card__note {
    margin: 0;
}

.platform-card__line {
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
    font-size: clamp(0.98rem, 1.02vw, 1rem);
    font-weight: 700;
    line-height: 1.04;
    text-transform: uppercase;
}

.platform-card__label {
    color: #ffffff;
}

.platform-card__value {
    color: var(--color-accent);
    font-weight: 700;
    letter-spacing: -0.03em;
}

.platform-card__note {
    font-size: clamp(0.8rem, 0.82vw, 0.84rem);
    font-weight: 500;
    line-height: 1.04;
    color: rgba(255, 255, 255, 0.76);
}

.media-page__player-column {
    position: absolute;
    right: 12px;
    bottom: 0;
    z-index: 2;
    width: 336px;
    height: 430px;
}

.media-player {
    position: absolute;
    left: 16px;
    bottom: 0;
    z-index: 2;
    margin: 0;
    width: 286px;
}

.media-player img {
    width: 100%;
    height: auto;
}

.media-page__logo {
    position: absolute;
    right: -10px;
    bottom: 20px;
    z-index: 3;
    width: var(--section-logo-size);
}

@media (max-width: 1260px) {
    .media-page__content {
        grid-template-columns: minmax(0, 1fr) minmax(236px, 260px);
        gap: 44px;
        padding: 52px 300px 40px 84px;
    }

    .media-platforms {
        padding-top: 154px;
    }

    .media-page__player-column {
        width: 304px;
        height: 388px;
    }

    .media-player {
        width: 254px;
    }

    .media-page__right-corner {
        height: 386px;
    }

    .media-page__triangle--mid-top {
        right: 222px;
    }

    .media-page__triangle--mid-right {
        right: 30px;
    }

    .media-page__triangle--bottom {
        right: 348px;
    }
}

@media (max-width: 980px) {
    .media-page {
        min-height: auto;
    }

    .media-page__shell {
        min-height: auto;
    }

    .media-page__content {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 42px 28px 356px;
    }

    .media-page__main {
        gap: 28px;
    }

    .media-features {
        max-width: 680px;
    }

    .media-platforms {
        max-width: 420px;
        padding-top: 0;
    }

    .media-page__player-column {
        width: 300px;
        height: 388px;
    }

    .media-player {
        left: 12px;
        width: 248px;
    }

    .media-page__right-corner {
        height: 376px;
    }

    .media-page__triangle--top-small,
    .media-page__triangle--mid-right {
        display: none;
    }

    .media-page__triangle--top-large {
        left: auto;
        right: 206px;
    }

    .media-page__triangle--mid-top {
        right: 234px;
    }

    .media-page__triangle--lower-left {
        left: auto;
        right: 330px;
    }

    .media-page__triangle--bottom {
        right: 352px;
    }
}

@media (max-width: 760px) {
    .media-page__content {
        padding: 34px 20px 314px;
    }

    .media-page__title {
        font-size: clamp(2.45rem, 11.6vw, 3.2rem);
    }

    .media-features {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .media-gallery {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .platform-card {
        gap: 14px;
    }

    .media-page__player-column {
        width: 252px;
        height: 330px;
        right: 8px;
    }

    .media-player {
        left: 10px;
        width: 210px;
    }

    .media-page__right-corner {
        height: 318px;
    }

    .media-page__logo {
        width: var(--section-logo-size-tablet);
        right: 10px;
        bottom: 24px;
    }

    .media-page__triangle--mid-top,
    .media-page__triangle--lower-left {
        display: none;
    }

    .media-page__triangle--top-large {
        right: 150px;
        width: 86px;
    }

    .media-page__triangle--bottom {
        right: 288px;
        width: 58px;
    }
}

@media (max-width: 560px) {
    .media-page__left-corner,
    .media-page__triangle {
        display: none;
    }

    .media-page__content {
        padding: 28px 16px 276px;
    }

    .media-features__item {
        font-size: 0.96rem;
    }

    .platform-card__line {
        font-size: 0.9rem;
    }

    .platform-card__note {
        font-size: 0.76rem;
    }

    .media-page__player-column {
        width: 214px;
        height: 286px;
    }

    .media-player {
        left: 8px;
        width: 180px;
    }

    .media-page__right-corner {
        height: 276px;
    }

    .media-page__logo {
        width: var(--section-logo-size-mobile);
        right: 8px;
        bottom: 20px;
    }
}

.audience-page {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("assets/Audience_page/Background_5.png") center / cover no-repeat;
}

.audience-page__shell {
    position: relative;
    width: min(100%, 100%);
    min-height: 780px;
    overflow: hidden;
}

.audience-page__intro {
    position: absolute;
    top: 61px;
    left: 110px;
    width: 308px;
    display: grid;
    align-content: start;
    gap: 34px;
}

.audience-page__header {
    display: grid;
    gap: 26px;
}

.audience-page__title {
    margin: 0;
    font-size: 4.1rem;
    font-weight: 700;
    line-height: 0.94;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.audience-page__subtitle {
    margin: 0;
    max-width: 14ch;
    font-size: 1.22rem;
    font-weight: 700;
    line-height: 1.08;
    text-transform: uppercase;
}

.audience-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 34px;
}

.audience-list__item {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 15px;
    align-items: start;
}

.audience-list__icon {
    width: 42px;
    height: auto;
}

.audience-list__item:nth-child(2) .audience-list__icon {
    width: 34px;
    margin-left: 4px;
}

.audience-list__item:nth-child(3) .audience-list__icon {
    width: 44px;
}

.audience-list__item:nth-child(4) .audience-list__icon {
    width: 36px;
    margin-left: 3px;
}

.audience-list__text {
    margin: 0;
    font-size: 1.02rem;
    font-weight: 500;
    line-height: 1.12;
}

.audience-page__stories {
    position: absolute;
    top: 29px;
    left: 469px;
    width: 318px;
    display: grid;
    align-content: start;
    gap: 17px;
}

.audience-page__bar {
    display: block;
    background: var(--color-accent);
    transform: skewX(-15deg);
    transform-origin: center;
    pointer-events: none;
}

.audience-page__bar--top {
    margin-left: 173px;
    width: 288px;
    height: 46px;
}

.audience-page__bar--bottom {
    width: 278px;
    height: 68px;
}

.audience-photo {
    margin: 0;
}

.audience-photo img {
    width: 100%;
    height: 100%;
    display: block;
}

.audience-photo--small {
    width: min(100%, 318px);
}

.audience-photo--small__1 {
    margin-left: 133px;
}

.audience-photo--small__2 {
    margin-left: 93px;
}

.audience-photo--small__3 {
    margin-left: 53px;
}

.audience-photo--small__4 {
    margin-left: 13px;
}

.audience-page__featured {
    position: absolute;
    top: 81px;
    right: 17px;
    width: 612px;
    min-height: 585px;
    display: grid;
    align-content: start;
    gap: 12px;
    padding-top: 104px;
}

.audience-page__quote-box {
    position: absolute;
    top: 0;
    left: 66px;
    width: 512px;
    margin: 0;
    padding: 27px 36px 31px 41px;
    max-width: none;
    z-index: 2;
}

.audience-page__quote-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 2px solid var(--color-accent);
    transform: skewX(-15deg);
    transform-origin: center;
}

.audience-page__quote {
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1.08;
    text-transform: uppercase;
}

.audience-photo--hero {
    width: 573px;
    z-index: 4;
    position: relative;
    left: -70px;
    margin-left: auto;
}

.audience-page__bottom-grid {
    width: 603px;
    display: grid;
    grid-template-columns: 285px 285px;
    gap: -66px;
    align-items: start;
}

.audience-photo--wide {
    margin-left: -90px;
    width: 100%;
    height: 175px;
}

.audience-photo--narrow {
    width: 100%;
    object-fit: cover;
    height: 175px;
    margin-left: -135px;
}

.audience-page__logo {
    position: absolute;
    right: 28px;
    bottom: 23px;
    width: var(--section-logo-size);
    z-index: 2;
}

@media (max-width: 1359px) {
    /* Скрываем все картинки на промежуточных ширинах < 1366px */
    .audience-page img {
        display: none !important;
    }

    .audience-photo {
        display: none;
    }

    .audience-page__bottom-grid {
        display: none;
    }

    /* Убираем пустую колонку под иконку */
    .audience-list__item {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
    }
}

@media (max-width: 1366px) {
    .audience-page__shell {
        min-height: 744px;
    }

    .audience-page__title {
        font-size: 3.9rem;
    }

    .audience-page__intro {
        top: 52px;
        left: 58px;
        width: 282px;
    }

    .audience-page__stories {
        top: 35px;
        left: 392px;
        width: 288px;
        gap: 14px;
    }

    .audience-page__bar--top {
        display: none;
        top: -26px;
        left: 46px;
        width: 240px;
        height: 40px;
    }

    .audience-page__bar--bottom {
        display: none;
        left: -103px;
        bottom: -34px;
        width: 226px;
        height: 58px;
    }

    .audience-page__featured {
        top: 84px;
        right: 14px;
        width: 562px;
        min-height: 532px;
        padding-top: 92px;
    }

    .audience-page__quote-box {
        left: 48px;
        width: 472px;
        top: auto;
        bottom: 0;
        padding: 24px 28px 27px 33px;
    }

    .audience-photo--hero {
        width: 522px;
    }

    .audience-page__bottom-grid {
        width: 462px;
        grid-template-columns: 228px 226px;
    }

    .audience-page__logo {
        right: 18px;
        bottom: 26px;
        width: var(--section-logo-size-tablet);
    }
}

@media (max-width: 1024px) {
    .audience-page {
        min-height: auto;
    }

    .audience-page__title {
        font-size: 3.45rem;
    }

    .audience-page__shell {
        min-height: auto;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 308px;
        gap: 34px 28px;
        padding: 42px 24px 40px;
    }

    .audience-page__intro,
    .audience-page__stories,
    .audience-page__featured {
        position: static;
        top: auto;
        right: auto;
        left: auto;
        width: auto;
        min-height: 0;
    }

    .audience-page__intro {
        gap: 32px;
    }

    .audience-page__stories {
        width: 308px;
        justify-self: end;
        gap: 12px;
    }

    .audience-page__featured {
        grid-column: 1 / -1;
        gap: 14px;
        padding-top: 0;
    }

    .audience-page__quote-box {
        position: relative;
        top: auto;
        left: auto;
        width: min(100%, 520px);
        margin: 0;
        padding: 22px 24px 24px 28px;
    }

    .audience-page__bar--top {
        width: 228px;
        height: 34px;
    }

    .audience-page__bar--bottom {
        left: -18px;
        bottom: -28px;
        width: 220px;
        height: 54px;
    }

    .audience-photo--hero {
        width: min(100%, 573px);
        margin-left: 0;
    }

    .audience-page__bottom-grid {
        width: min(100%, 503px);
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.84fr);
        gap: 12px;
    }

    .audience-page__logo {
        bottom: 24px;
    }
}

@media (max-width: 768px) {
    .audience-page__shell {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 32px 20px 30px;
    }

    .audience-page__intro {
        gap: 24px;
    }

    .audience-page__header {
        gap: 18px;
    }

    .audience-list {
        gap: 24px;
    }

    .audience-page__stories {
        width: min(100%, 360px);
        justify-self: center;
        gap: 12px;
    }

    .audience-page__bar--top {
        left: 94px;
        width: 232px;
        height: 34px;
    }

    .audience-page__bar--bottom {
        left: -18px;
        width: 225px;
        height: 54px;
        bottom: -28px;
    }

    .audience-page__featured {
        gap: 14px;
    }

    .audience-page__quote-box {
        max-width: none;
        padding: 22px 18px;
    }

    .audience-page__bottom-grid {
        width: 100%;
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.84fr);
        gap: 12px;
    }

    .audience-page__logo {
        position: relative;
        right: auto;
        bottom: auto;
        margin-left: auto;
        width: var(--section-logo-size-tablet);
    }
}

@media (max-width: 365px) {
    .audience-page__title {
        font-size: 3rem;
    }

    .audience-page__subtitle {
        font-size: 1.02rem;
    }

    .audience-list__item {
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
        align-items: start;
    }

    .audience-list__icon {
        width: 36px;
    }

    .audience-list__item:nth-child(2) .audience-list__icon {
        width: 30px;
    }

    .audience-list__item:nth-child(3) .audience-list__icon {
        width: 38px;
    }

    .audience-list__item:nth-child(4) .audience-list__icon {
        width: 32px;
    }

    .audience-list__text {
        font-size: 0.96rem;
    }

    .audience-page__stories {
        width: 100%;
    }

    .audience-page__bar {
        display: none;
    }

    .audience-page__quote {
        font-size: 1rem;
    }

    .audience-page__quote-box {
        width: auto;
        padding: 18px 18px 20px;
    }

    .audience-page__bottom-grid {
        grid-template-columns: 1fr;
    }

    .audience-page__logo {
        width: var(--section-logo-size-mobile);
    }
}

.achievements-page {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("assets/Achievements_page/Background_6.png") center / cover no-repeat;
}

.achievements-page__shell {
    position: relative;
    width: 100%;
    min-height: clamp(620px, 50.5vw, 744px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) 644px;
    gap: 40px;
    padding: 54px 0 40px 110px;
    overflow: hidden;
}

.achievements-page__content {
    max-width: 768px;
    display: grid;
    align-content: start;
    gap: 42px;
}

.achievements-page__header {
    display: grid;
}

.achievements-page__title {
    margin: 0;
    font-size: clamp(3.1rem, 4.3vw, 4.1rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.04em;
    text-transform: uppercase;
}

.achievements-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 18px;
    z-index: 2;
}

.achievement-item {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
}

.achievement-item__icon {
    width: 40px;
    height: auto;
    margin-top: 2px;
}

.achievement-item__icon--medal {
    width: 31px;
}

.achievement-item__icon--logo {
    width: 45px;
}

.achievement-item__copy {
    display: grid;
    gap: 2px;
}

.achievement-item__title,
.achievement-item__text {
    margin: 0;
}

.achievement-item__title {
    font-size: 1.1rem;
    font-weight: 700;
    /*line-height: 1.12;*/
    color: var(--color-accent);
}

.achievement-item__text {
    font-size: 1.1rem;
    font-weight: 300;
    /*line-height: 1.12;*/
}

.achievement-item__accent {
    color: var(--color-accent);
    font-weight: 700;
}

.achievements-page__gallery {
    width: 90%;
    position: relative;
    display: grid;
    align-content: start;
    gap: 12px;
    right: 25%;
    margin: auto 0;
}

.achievements-page__gallery-row {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.achievements-page__gallery-row:nth-of-type(1) {
    left: 9%;
}

.achievements-page__gallery-row:nth-of-type(2) {
    left: 1%;
}


.achievements-page__gallery-row > *:first-child {
    position: relative;
    left: 5%;
}

.achievements-page__gallery-row > *:last-child {
    position: relative;
    left: -5%;
}

.achievements-photo {
    position: relative;
    z-index: 1;
    margin: 0;
}

.achievements-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.achievements-photo--hero {
    position: relative;
    left: 20%;
}

.achievements-photo--half {
    width: 100%;
}

.achievements-page__corner {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    height: 100%;
    width: auto;
    pointer-events: none;
}

.achievements-page__logo {
    position: absolute;
    right: 3%;
    bottom: 6%;
    z-index: 2;
    width: var(--section-logo-size);
}

@media (max-width: 1260px) {
    .achievements-page__shell {
        grid-template-columns: minmax(0, 1fr) 592px;
        gap: 28px;
        padding-left: 64px;
    }

    .achievements-page__gallery {
        width: 100%;
        max-width: 592px;
        right: 0;
        padding-right: 76px;
    }

    .achievements-page__logo {
        width: var(--section-logo-size-tablet);
    }
}

@media (max-width: 1020px) {
    .achievements-page {
        min-height: auto;
    }

    .achievements-page__shell {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 42px 24px 36px;
    }

    .achievements-page__content {
        max-width: 100%;
        gap: 34px;
    }

    .achievements-page__corner {
        right: -100px;
    }
}

@media (max-width: 768px) {
    .achievements-page__shell {
        padding: 32px 20px 30px;
    }

    .achievements-list {
        width: 90%;
        gap: 16px;
    }

    .achievement-item {
        gap: 12px;
    }

    .achievement-item__icon {
        width: 34px;
    }

    .achievement-item__icon--medal {
        width: 28px;
    }

    .achievement-item__icon--logo {
        max-width: 42px;
        max-height: 42px;
    }

    .achievement-item__title,
    .achievement-item__text {
        font-size: 0.96rem;
    }

    .achievements-page__gallery {
        width: 100%;
        padding-right: 44px;
        gap: 8px;
    }

    .achievements-photo--hero {
        left: 14px;
    }

    .achievements-page__gallery-row {
        gap: 6px;
    }

    .achievements-page__gallery-row:nth-of-type(1) {
        left: -44px;
    }

    .achievements-page__gallery-row:nth-of-type(2) {
        left: -88px;
    }

    .achievements-page__gallery-row > *:first-child {
        left: 6px;
    }

    .achievements-page__gallery-row > *:last-child {
        left: -12px;
    }

    .achievements-page__corner {
        right: -100px;
        z-index: -1;
    }
    .achievements-page__logo {
        display: none;
    }
}

@media (max-width: 560px) {
    .achievements-page__shell {
        padding: 28px 16px 24px;
    }

    .achievements-page__title {
        font-size: clamp(2.2rem, 12vw, 2.85rem);
    }

    .achievement-item {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 10px;
    }

    .achievement-item__icon {
        width: 30px;
    }

    .achievement-item__icon--medal {
        width: 26px;
    }

    .achievement-item__icon--logo {
        max-width: 36px;
        max-height: 36px;
    }

    .achievement-item__title,
    .achievement-item__text {
        font-size: 0.9rem;
    }

    .achievements-page__gallery {
        gap: 6px;
    }

    .achievements-photo--hero {
        left: 0;
        width: 100%;
    }

    .achievements-page__gallery-row {
        grid-template-columns: 1fr;
        gap: 6px;
        left: 0;
    }

    .achievements-page__gallery-row:nth-of-type(1),
    .achievements-page__gallery-row:nth-of-type(2) {
        left: 0;
    }

    .achievements-page__gallery-row > *:first-child,
    .achievements-page__gallery-row > *:last-child {
        left: 0;
    }

    .achievements-page__logo {
        width: var(--section-logo-size-mobile);
        right: 10px;
        bottom: 8px;
    }
    .achievements-page__corner {
        display: none;
    }
}

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(10px);
}

.site-header__shell {
    width: min(100%, var(--shell-width));
    margin: 0 auto;
    height: var(--header-height);
    padding: 0 clamp(16px, 2vw, 28px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.site-header__logo {
    height: 34px;
    width: auto;
}

.site-header__nav {
    flex: 1 1 auto;
}

.site-header__nav-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.4vw, 34px);
}

.site-header__nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.92rem;
    letter-spacing: 0.09em;
    white-space: nowrap;
    opacity: 0.95;
    transition: opacity 0.2s ease;
}

.site-header__nav-link:hover {
    opacity: 1;
}

.site-header__burger {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: transparent;
    border-radius: 12px;
    color: var(--color-text);
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.site-header__burger-lines {
    width: 18px;
    height: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.site-header__burger-lines > span {
    height: 2px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 2px;
}

.site-header__mobile {
    display: none;
}

.site-header__mobile-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.site-header__mobile-link {
    display: block;
    padding: 12px 0;
    color: var(--color-text);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 860px) {
    :root {
        --header-height: 66px;
    }

    .site-header__nav {
        display: none;
    }

    .site-header__burger {
        display: inline-flex;
    }

    .site-header__shell {
        padding: 0 16px;
    }

    .site-header__mobile {
        display: block;
        position: absolute;
        top: var(--header-height);
        left: 0;
        right: 0;
        padding: 16px;
        background: rgba(0, 0, 0, 0.92);
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        transform: translateY(-6px);
        transition: max-height 0.25s ease, opacity 0.2s ease, transform 0.25s ease;
    }

    .site-header__mobile--open {
        max-height: 420px;
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
}


.site-footer {
    width: 100%;
    background: #161616;
    border-top: 2px solid #1f1f1f;
}

.site-footer__inner {
    width: 100%;
    min-height: 123px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 2% 6%;
}

.site-footer__brand {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.site-footer__logo {
    width: 108px;
    height: auto;
    opacity: 0.35;
}

.site-footer__menu {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.site-footer__link {
    flex: 0 0 150px;
    min-height: 51px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: "SF Pro Display", "SF Pro Text", "Gilroy", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #686868;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
    color: #8b8b8b;
    background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 1360px) {
    .site-footer__inner {
        padding: 28px 48px;
    }

    .site-footer__menu {
        justify-content: center;
        gap: 4px;
    }

    .site-footer__link {
        flex-basis: 170px;
        font-size: 16px;
    }
}

@media (max-width: 980px) {
    .site-footer__brand {
        margin: 0 auto;
    }
    .site-footer__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
    }

    .site-footer__menu {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 560px) {

    .site-footer__brand {
        margin: 0 auto;
        order: 1;
    }
    .site-footer__inner {
        padding: 20px 16px;
    }

    .site-footer__logo {
        width: 92px;
    }

    .site-footer__link {
        flex: 1 1 100%;
        justify-content: center;
        padding-inline: 0;
        min-height: 40px;
        font-size: 14px;
        letter-spacing: 0.06em;
    }
}

.standards-page {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #161616 url("assets/Standards_page/Background_7.png") center / cover no-repeat;
    overflow: hidden;
}

.standards-page__shell {
    width: 100%;
    min-height: clamp(620px, 50.5vw, 744px);
    margin: 0 auto;
    padding: 58px clamp(24px, 4.2vw, 72px) 52px;
}

.standards-page__header {
    width: 100%;
    margin: 0 0 26px;
}

.standards-page__title {
    margin: 0;
    max-width: 13ch;
    font-size: clamp(3.45rem, 4.95vw, 5.05rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.06em;
    text-transform: uppercase;
}

.standards-page__grid {
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 24px 36px;
    align-items: start;
}

.standards-page__column {
    display: grid;
    gap: 14px;
}

.standard-card {
    --standard-number: #8d8d8d;
    --standard-fade: rgba(22, 22, 22, 0.96);
    --standard-fade-soft: rgba(22, 22, 22, 0.12);
    --standard-card-height: 108px;
    display: grid;
    width: 100%;
    grid-template-columns: minmax(0, 1fr) clamp(180px, 15vw, 220px);
    align-items: stretch;
}

.standard-card--accent {
    --standard-number: rgba(255, 255, 255, 0.56);
    --standard-fade: var(--color-accent);
    --standard-fade-soft: rgba(var(--color-accent-rgb), 0.18);
    background: var(--color-accent);
}

.standard-card__copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: var(--standard-card-height);
    padding: 7px 20px 7px 0;
}

.standard-card--accent .standard-card__copy {
    padding: 15px 18px 13px 18px;
}

.standard-card__heading {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 11px;
    margin-bottom: 7px;
}

.standard-card__number {
    color: var(--standard-number);
    min-width: 1.5ch;
    font-size: clamp(2.6rem, 3.45vw, 3.35rem);
    font-weight: 700;
    line-height: 0.8;
    letter-spacing: -0.06em;
}

.standard-card__title {
    margin: 2px 0 0;
    max-width: 15ch;
    font-size: clamp(1.28rem, 1.62vw, 1.8rem);
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.03em;
    text-transform: uppercase;
}

.standard-card__lead {
    margin: -2px 0 4px;
    font-size: clamp(0.86rem, 0.98vw, 1rem);
    font-weight: 500;
    line-height: 1.04;
    color: rgba(255, 255, 255, 0.95);
}

.standard-card__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 1px;
    font-size: clamp(0.88rem, 0.98vw, 1rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.01em;
    color: rgba(255, 255, 255, 0.94);
}

.standard-card__list li {
    position: relative;
    padding-left: 11px;
}

.standard-card__list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -1px;
    color: currentColor;
}

.standard-card__media {
    position: relative;
    margin: 0;
    width: 100%;
    min-height: var(--standard-card-height);
    overflow: hidden;
}

.standard-card__media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(to right, var(--standard-fade) 0%, var(--standard-fade-soft) 40%, rgba(22, 22, 22, 0) 82%);
    pointer-events: none;

}

.standard-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.standards-page__column:first-child > .standard-card:nth-child(1) {
    --standard-card-height: 106px;
}

.standards-page__column:first-child > .standard-card:nth-child(2) {
    --standard-card-height: 144px;
}

.standards-page__column:first-child > .standard-card:nth-child(3) {
    --standard-card-height: 122px;
}

.standards-page__column:first-child > .standard-card:nth-child(4) {
    --standard-card-height: 123px;
}

.standards-page__column:last-child > .standard-card:nth-child(1) {
    --standard-card-height: 108px;
}

.standards-page__column:last-child > .standard-card:nth-child(2) {
    --standard-card-height: 124px;
}

.standards-page__column:last-child > .standard-card:nth-child(3) {
    --standard-card-height: 121px;
}

.standards-page__column:last-child > .standard-card:nth-child(4) {
    --standard-card-height: 150px;
}

@media (max-width: 1390px) {
    .standards-page__shell {
        padding: 46px 32px 40px;
    }

    .standards-page__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px 22px;
    }

    .standards-page__title {
        max-width: none;
    }
}

@media (max-width: 1120px) {
    .standards-page__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }


    .standards-page__column {
        width: min(100%, 900px);
        margin: 0 auto;
        gap: 12px;
    }

    .standard-card {
        grid-template-columns: minmax(0, 1fr) 280px;
    }

    .standard-card__copy {
        padding-right: 10px;
    }
}

@media (max-width: 760px) {
    .standards-page__shell {
        padding: 40px 16px;
    }

    .standards-page__title {
        max-width: none;
        line-height: 0.92;
    }

    .standard-card {
        grid-template-columns: 1fr;
    }

    .standard-card__copy {
        min-height: 0;
        padding: 12px 0 14px;
    }

    .standard-card--accent .standard-card__copy {
        padding: 16px 16px 12px;
    }

    .standard-card__title {
        max-width: none;
    }

    .standard-card__media {
        min-height: 172px;
    }
}

@media (max-width: 520px) {
    .standards-page__title {
        font-size: clamp(2.2rem, 11vw, 3rem);
    }

    .standard-card__heading {
        gap: 8px;
    }

    .standard-card__number {
        font-size: 2.4rem;
    }

    .standard-card__media {
        min-height: 154px;
    }
}

.projects-page {
    position: relative;
    width: 100%;
    background: #161616 url("assets/Projects_page/Background_8.png") center / cover no-repeat;
    overflow: hidden;
    isolation: isolate;
}

.projects-page__shell::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50.4%;
    width: 188px;
    background: rgba(0, 0, 0, 0.34);
    transform: skewX(-14deg) translateX(-50%);
    transform-origin: center;
    z-index: 0;
}

.projects-page__shell {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 744px;
    margin: 0 auto;
    padding: 58px 0 42px;
}

.projects-page__corner {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
    width: auto;
    height: 100%;
    pointer-events: none;
}

.projects-page__logo {
    position: absolute;
    right: clamp(18px, 2.6vw, 34px);
    bottom: clamp(24px, 3vw, 38px);
    z-index: 2;
    width: var(--section-logo-size);
    height: auto;
}

.projects-page__header {
    position: relative;
    z-index: 2;
    width: min(100%, 1285px);
    margin: 0 auto 34px;
}

.projects-page__title {
    margin: 0;
    max-width: 14ch;
    font-size: clamp(3.1rem, 4.55vw, 4.55rem);
    font-weight: 700;
    line-height: 0.94;
    letter-spacing: -0.05em;
    text-transform: uppercase;
}

.projects-page__layout {
    position: relative;
    z-index: 2;
    width: min(100%, 1285px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 681px 560px;
    gap: 32px 44px;
    align-items: start;
    justify-content: space-between;
}

.projects-page__left {
    display: grid;
    gap: 24px;
}

.projects-page__right {
    display: grid;
    justify-items: start;
    gap: 16px;
    padding-right: 28px;
}

.project-panel {
    display: grid;
    gap: 0;
}

.project-panel__label,
.project-note__copy {
    position: relative;
    z-index: 1;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: transparent;
    border: 0;
    overflow: visible;
}

.project-panel__label::before,
.project-panel__label::after,
.project-note__copy::before,
.project-note__copy::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    left: -20px;
}

.project-panel__label::before,
.project-note__copy::before {
    z-index: -2;
    background: rgba(26, 26, 26, 0.88);
    clip-path: var(--project-panel-shape);
}

.project-panel__label::after,
.project-note__copy::after {
    z-index: -1;
    background-image: var(--project-panel-frame);
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 100% 100%;
}

.project-panel__label {
    --project-panel-shape: polygon(5.7% 0, 100% 0, 94.3% 100%, 0 100%);
    min-height: 130px;
    padding: 18px 32px 16px 32px;
}

.project-panel--charity .project-panel__label {
    --project-panel-frame: url("assets/Projects_page/Blue_border_1.svg");
    width: min(100%, 552px);
    margin-left: 33px;
}

.project-panel__gallery--three {
    .project-panel__photo:nth-child(1) {
        position: relative;
        left: 20px;
    }
    .project-panel__photo:nth-child(3) {
        position: relative;
        right: 20px;
    }
}

.project-panel--university .project-panel__label {
    --project-panel-frame: url("assets/Projects_page/Blue_border_2.svg");
    width: min(100%, 583px);
    margin-left: 30px;
}

.project-panel--academy .project-panel__label {
    --project-panel-frame: url("assets/Projects_page/Blue_border_4.svg");
    width: min(100%, 467px);
    margin-left: 30px;
    padding: 18px 22px 16px 18px;
}

.project-panel__title {
    margin: 0 0 4px;
    font-size: clamp(1.16rem, 1.42vw, 1.68rem);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.project-panel__text {
    margin: 0;
    font-size: clamp(0.96rem, 0.98vw, 1.1rem);
    font-weight: 400;
    line-height: 1.12;
    color: rgba(255, 255, 255, 0.88);
}

.project-panel__gallery {
    display: grid;
    gap: 0;
    align-items: end;
}

.project-panel--charity {
    width: min(100%, 646px);
}

.project-panel--university {
    width: min(100%, 681px);
}

.project-panel--academy {
    width: min(100%, 545px);
}

.project-panel__gallery--three {
    width: min(100%, 603px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-panel__photo,
.project-panel__hero,
.project-note__photo {
    margin: 0;
}

.project-panel__photo img,
.project-panel__hero img,
.project-note__photo img {
    width: 100%;
    height: auto;
}

.project-note {
    position: relative;
    width: min(100%, 648px);
    min-height: 106px;
}

.project-note__photo {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    width: 207px;
}

.project-note__copy {
    --project-panel-frame: url("assets/Projects_page/Blue_border_3.svg");
    --project-panel-shape: polygon(3% 0, 100% 0, 97% 100%, 0 100%);
    width: 507px;
    margin-left: 141px;
    min-height: 62px;
    padding: 14px 24px 14px 34px;
    z-index: 2;
}

.project-note__text {
    margin: 0;
    font-size: clamp(0.98rem, 0.98vw, 1.1rem);
    font-weight: 400;
    line-height: 1.15;
    color: rgba(255, 255, 255, 0.92);
}

.projects-page__bottom {
    width: 513px;
    display: grid;
    grid-template-columns: 250px 245px;
}

.projects-page__right {
    .project-panel__photo:nth-child(1) {
        position: relative;
        left: -15px;
    }
    .project-panel__photo:nth-child(2) {
        position: relative;
        right: 40px;
    }
}

.project-panel__hero {
    width: 490px;
    margin-left: 30px;
}

@media (max-width: 1390px) {
    .projects-page__shell::before {
        display: none;
    }

    .projects-page__shell {
        padding: 46px 32px 40px;
    }

    .projects-page__layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .projects-page__right {
        max-width: 646px;
        padding-right: 124px;
    }
}

@media (max-width: 760px) {
    .projects-page__shell {
        min-height: 0;
        padding: 40px 16px 144px;
    }

    .projects-page__corner {
        top: auto;
        left: 0;
        right: 0;
        bottom: 0;
        height: 112px;
        width: 100%;
        object-fit: cover;
        object-position: right bottom;
    }

    .projects-page__logo {
        right: 16px;
        bottom: 18px;
        width: var(--section-logo-size-mobile);
    }

    .projects-page__right {
        padding-right: 0;
    }

    .project-panel__label,
    .project-note__copy {
        width: 100% !important;
        margin-left: 0;
        background: rgba(26, 26, 26, 0.88);
        border: 2px solid var(--color-accent);
        border-radius: 18px 18px 0 0;
        padding: 16px 18px 14px;
    }

    .project-panel__label::before,
    .project-panel__label::after,
    .project-note__copy::before,
    .project-note__copy::after {
        display: none;
    }

    .project-panel__gallery--three,
    .projects-page__bottom,
    .project-note {
        width: 100%;
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .project-note__photo {
        position: static;
        width: 100%;
    }

    .project-note__copy {
        width: 100%;
        margin-left: 0;
        border-radius: 18px;
    }

    .project-panel__hero {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }
}

@media (max-width: 520px) {
    .projects-page__title {
        font-size: clamp(2rem, 11vw, 2.9rem);
    }

    .project-panel__title {
        font-size: 1.1rem;
    }

    .project-panel__text,
    .project-note__text {
        font-size: 0.95rem;
    }
}

.kids-page {
    position: relative;
    overflow: hidden;
    background: #121212;
}

.kids-page__shell {
    position: relative;
    margin: 0 auto;
    padding: 44px 40px 40px;
    z-index: 1;
    isolation: isolate;
}

.kids-page__shell::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 52%;
    background: var(--color-accent);
    clip-path: polygon(0 0, 100% 0, 84% 100%, 0 100%);
    z-index: -2;
    pointer-events: none;
}

.kids-page__backdrop {
    position: absolute;
    inset: 0;
    background: url("assets/Kids_page/Background_9.png") center/cover no-repeat;
    opacity: 0.38;
    z-index: -1;
    pointer-events: none;
}

.kids-page__header,
.kids-page__layout {
    position: relative;
    z-index: 1;
}

.kids-page__header {
    width: min(100%, 1288px);
    margin: 0 auto 28px;
}

.kids-page__link {
    text-decoration: none;
    cursor: pointer;
}

.kids-page__title {
    margin: 0;
    font-size: clamp(3.1rem, 4.55vw, 4.55rem);
    font-weight: 700;
    line-height: 0.95;
    text-transform: uppercase;
    color: #ffffff;
}

.kids-page__layout {
    position: relative;
    width: min(100%, 1408px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 635px 634px;
    justify-content: space-between;
    gap: 46px;
}

.kids-page__column {
    position: relative;
}

.kids-page__column--blue {
    padding-top: 30px;
}

.kids-page__column--dark {
    padding-top: 30px;
}

.kids-page__column--blue::before,
.kids-page__column--dark::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
}

.kids-page__column--blue::before {
    display: none;
}

.kids-page__column--dark::before {
    background: rgba(21, 21, 22, 0.9);
    clip-path: polygon(11% 0, 100% 0, 100% 100%, 0 100%);
}

.kids-page__label {
    position: relative;
    min-height: 100px;
    margin-bottom: -15px;
    padding: 18px 30px 24px;
    isolation: isolate;
}

.kids-page__label::before,
.kids-page__label::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.kids-page__label::after {
    z-index: -1;
    background-repeat: no-repeat;
    background-position: left top;
    background-size: 100% 100%;
}

.kids-page__label--white {
    width: 538px;
    margin-left: 44px;
    --kids-label-shape: polygon(3.8% 0, 100% 0, 96.2% 100%, 0 100%);
}

.kids-page__label--white::before {
    clip-path: var(--kids-label-shape);
}

.kids-page__label--white::after {
    background-image: url("assets/Kids_page/White_Border.png");
}

.kids-page__label--blue {
    width: 538px;
    margin-left: 28px;
    --kids-label-shape: polygon(3.8% 0, 100% 0, 96.2% 100%, 0 100%);
}

.kids-page__label--blue::before {
    clip-path: var(--kids-label-shape);
}

.kids-page__label--blue::after {
    background-image: url("assets/Kids_page/Blue_border.png");
}

.kids-page__label-title {
    margin: 0 0 8px;
    font-size: clamp(1.42rem, 1.48vw, 1.76rem);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    color: #ffffff;
}

.kids-page__label-text {
    margin: 0;
    font-size: clamp(1rem, 1.1vw, 1.25rem);
    font-weight: 400;
    line-height: 1.08;
    color: rgba(255, 255, 255, 0.9);
}

.kids-page__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 295px);
    gap: 16px;
}

.kids-page__photo {
    position: relative;
    margin: 0;
}
.kids-page__photo:nth-of-type(1) {
    left: 30px;
}
.kids-page__photo:nth-of-type(2) {
    right: 30px;
}
.kids-page__photo:nth-of-type(3) {
    left: -30px;
}
.kids-page__photo:nth-of-type(4) {
    right: 90px;
}
.kids-page__photo img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 1440px) {
    .kids-page__shell {
        padding: 40px 28px 36px;
    }

    .kids-page__layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 24px;
    }

    .kids-page__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kids-page__label--white,
    .kids-page__label--blue {
        width: min(100%, 538px);
    }
}

@media (max-width: 1180px) {
    .kids-page__shell {
        min-height: 0;
        padding: 38px 24px 34px;
    }

    .kids-page__shell::before {
        display: none;
    }

    .kids-page__layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .kids-page__column {
        max-width: 760px;
        width: 100%;
        margin: 0 auto;
    }

    .kids-page__column--blue {
        max-width: none;
        isolation: isolate;
        padding: 30px 0 0;
    }

    .kids-page__column--blue::before,
    .kids-page__column--dark::before {
        display: block;
        clip-path: none;
        border-radius: 28px;
    }

    .kids-page__column--blue::before {
        left: 50%;
        inset: 0 auto -16px 50%;
        width: 100vw;
        background: var(--color-accent);
        border-radius: 0;
        transform: translateX(-50%);
    }

    .kids-page__column--blue .kids-page__label,
    .kids-page__column--blue .kids-page__grid {
        width: min(100%, 760px);
        margin-left: auto;
        margin-right: auto;
    }

    .kids-page__photo:nth-of-type(1) {
        left: 90px;
    }
    .kids-page__photo:nth-of-type(2) {
        right: -15px;
    }
    .kids-page__photo:nth-of-type(3) {
        left: 15px;
    }
    .kids-page__photo:nth-of-type(4) {
        right: 60px;
    }
}

@media (max-width: 768px) {

    .diagonal-cut {
        clip-path: none !important;
    }

    .kids-page__shell {
        padding: 34px 16px 28px;
    }

    .kids-page__header {
        margin-bottom: 20px;
    }

    .kids-page__title {
        font-size: clamp(2rem, 11vw, 3rem);
    }

    .kids-page__column {
        max-width: none;
    }

    .kids-page__column--blue,
    .kids-page__column--dark {
        padding: 18px 0 0;
    }

    .kids-page__column--blue::before,
    .kids-page__column--dark::before {
        border-radius: 22px;
    }

    .kids-page__label {
        width: 100%;
        min-height: 0;
        margin: 0 0 12px;
        padding: 16px 18px 14px;
    }

    .kids-page__label::before {
        clip-path: none;
        border-radius: 20px 20px 0 0;
    }

    .kids-page__label::after {
        display: none;
    }

    .kids-page__grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .kids-page__photo:nth-of-type(1),
    .kids-page__photo:nth-of-type(2),
    .kids-page__photo:nth-of-type(3),
    .kids-page__photo:nth-of-type(4) {
        right: 0;
        left: 0;
    }
}

@media (max-width: 375px) {
    .kids-page__grid {
        grid-template-columns: 1fr;
    }
}

.partners-work-page {
    position: relative;
    overflow: clip;
    background: #121212;
}

.partners-work-page__shell {
    position: relative;
    width: min(100%, 1512px);
    min-height: 742px;
    margin: 0 auto;
    padding: 28px 40px 40px;
}

.partners-work-page__backdrop {
    position: absolute;
    inset: 0;
    background: url("assets/Partners_page/Background_10.png") center/cover no-repeat;
    opacity: 0.82;
    pointer-events: none;
}

.partners-work-page__layout {
    position: relative;
    z-index: 1;
    width: min(100%, 1368px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 630px 630px;
    justify-content: space-between;
    gap: 36px;
}

.partners-work-page__left,
.partners-work-page__right {
    position: relative;
}

.partners-work-page__header {
    margin-bottom: 16px;
}

.partners-work-page__title {
    margin: 0;
    font-size: clamp(3.15rem, 4.75vw, 5rem);
    font-weight: 700;
    line-height: 0.9;
    text-transform: uppercase;
    color: #ffffff;
}

.partners-work-page__partners {
    width: 820px;
    margin-left: -132px;
    margin-bottom: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.partner-card {
    position: relative;
}

.partner-card__league {
    position: relative;
    z-index: 2;
    width: calc(100% - 54px);
    margin: 0 auto -14px;
    padding: 8px 12px 9px;
    background: var(--color-accent);
    font-size: 1.12rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
}

.partner-card__body {
    min-height: 108px;
    padding: 28px 18px 14px;
    background: #f4f4f3;
    clip-path: polygon(4% 0, 100% 0, 96% 100%, 0 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}

.partner-card__logo {
    display: block;
    max-width: 100%;
    height: 34px;
    width: auto;
}

.partner-card__logo--alata {
    height: 36px;
}

.partner-card__logo--brutal {
    height: 35px;
}


.partner-card__caption {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    color: #9a9a9a;
}

.partners-work-page__list {
    margin: 0;
    padding-left: 28px;
    list-style: disc;
}

.partners-work-page__list li {
    font-size: clamp(1.02rem, 1.06vw, 1.3rem);
    font-weight: 400;
    line-height: 1.14;
    color: #ffffff;
}

.partners-work-page__list li::marker {
    color: var(--color-accent);
}

.partners-work-page__list--left {
    max-width: 590px;
    margin-bottom: 30px;
}

.partners-work-page__list--right {
    max-width: 620px;
    margin-bottom: 18px;
}

.partners-work-page__photo {
    margin: 0;
}

.partners-work-page__photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partners-work-page__photo--left {
    width: 620px;
    height: 380px;
}

.partners-work-page__photo--right {
    width: 618px;
}

@media (max-width: 1440px) {
    .partners-work-page__shell {
        padding: 32px 28px 34px;
    }

    .partners-work-page__layout {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 28px;
    }

    .partners-work-page__partners {
        width: 100%;
        margin-left: 0;
    }

    .partners-work-page__photo--left,
    .partners-work-page__photo--right {
        width: 100%;
    }
}

@media (max-width: 1180px) {
    .partners-work-page__shell {
        min-height: 0;
        padding: 34px 24px 30px;
    }

    .partners-work-page__layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .partners-work-page__left,
    .partners-work-page__right {
        max-width: 760px;
        width: 100%;
        margin: 0 auto;
    }

    .partners-work-page__left::before {
        left: -28px;
        width: 44px;
    }
}

@media (max-width: 760px) {
    .partners-work-page__shell {
        padding: 32px 16px 26px;
    }

    .partners-work-page__title {
        font-size: clamp(2rem, 11vw, 3rem);
    }

    .partners-work-page__partners {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 18px;
    }

    .partner-card__league {
        width: calc(100% - 26px);
    }

    .partners-work-page__list {
        padding-left: 22px;
    }

    .partners-work-page__list li {
        font-size: 0.98rem;
    }

    .partners-work-page__left::before {
        display: none;
    }
}

.feedback-page {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #101010;
}

.feedback-page__shell {
    width: min(100%, 1280px);
    margin: 0 auto;
    padding: 52px 40px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.feedback-page__header {
    margin: 0 0 28px;
}

.feedback-page__title {
    margin: 0;
    font-size: clamp(3rem, 4.2vw, 4rem);
    font-weight: 700;
    line-height: 0.96;
    text-transform: uppercase;
    letter-spacing: -0.04em;
}

.feedback-form {
    max-width: 600px;
    display: grid;
    gap: 18px;
}

.feedback-form__switch {
    display: inline-flex;
    padding: 4px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    margin-bottom: 6px;
}

.feedback-form__switch-btn {
    position: relative;
    flex: 1 1 auto;
    padding: 10px 20px 11px;
    border-radius: 14px;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-family: inherit;
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.feedback-form__switch-btn--active {
    background: var(--color-accent);
    color: #ffffff;
}

.feedback-form__field {
    display: grid;
    gap: 6px;
}

.feedback-form__label {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.76);
}

.feedback-form__input,
.feedback-form__textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(10, 10, 10, 0.9);
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.3;
    outline: none;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.feedback-form__input::placeholder,
.feedback-form__textarea::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.feedback-form__input:focus,
.feedback-form__textarea:focus {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 1px rgba(0, 120, 183, 0.75);
    background: rgba(8, 16, 20, 0.98);
}

.feedback-form__textarea {
    resize: vertical;
    min-height: 130px;
}

.feedback-form__submit {
    margin-top: 6px;
    align-self: flex-start;
    padding: 13px 32px 14px;
    border-radius: 14px;
    border: 0;
    background: var(--color-accent);
    color: #ffffff;
    font-family: inherit;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: none;
    transition: background 0.18s ease, transform 0.08s ease;
}

.feedback-form__submit:hover {
    background: #0290dd;
}

.feedback-form__submit:active {
    transform: translateY(1px);
}

.feedback-form__submit:disabled {
    cursor: not-allowed;
    opacity: 0.75;
}

.feedback-form__status {
    margin: 4px 0 0;
    min-height: 1.2em;
    font-size: 0.94rem;
    font-weight: 600;
    line-height: 1.2;
}

.feedback-form__status--success {
    color: #48d07d;
}

.feedback-form__status--error {
    color: #ff6f6f;
}

@media (max-width: 980px) {
    .feedback-page__shell {
        padding: 40px 24px 48px;
    }

    .feedback-form {
        max-width: 520px;
    }
}

@media (max-width: 560px) {
    .feedback-page__shell {
        padding: 32px 16px 40px;
    }

    .feedback-form__switch {
        width: 100%;
    }

    .feedback-form__switch-btn {
        padding-inline: 12px;
        font-size: 0.86rem;
        letter-spacing: 0.05em;
    }

    .feedback-form__submit {
        width: 100%;
        text-align: center;
        justify-self: stretch;
    }
}


.diagonal-cut {
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
}
