/* Designers page styles */

.designers-page {
    padding-top: 0;
}

.crumbs {
    padding: 32px 0 40px;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--g60);
}

.crumbs span {
    margin: 0 8px;
}

/* ---- LOGO SIZES OVERRIDE ---- */
.header__logo {
    display: block;
    height: 64px;
    width: auto;
    max-width: none;
    max-height: none;
    object-fit: contain;
}

.footer__logo {
    height: 64px;
    width: auto;
}

/* ---- HEADER BASE (self-contained) ---- */
.header {
    position: sticky;
    top: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(16,27,32,.06);
    z-index: 100;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    position: relative;
}

.header__brand {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ---- NAV CENTERED ---- */
.header__nav {
    display: flex;
    gap: 32px;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--dark);
    transition: opacity .2s;
}

.nav-link:hover { opacity: .6; }

.nav-link--active {
    opacity: 1;
    font-weight: 500;
}

.header__burger {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 12px;
    flex-shrink: 0;
}

.header__burger span {
    display: block;
    height: 1px;
    background: var(--dark);
    margin: 6px 0;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    background: #fff;
    border-top: 1px solid rgba(16,27,32,.08);
}

.mobile-menu--open { display: block; }

.mobile-menu__inner {
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-link {
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* ---- SOCIAL ICONS ---- */
.header__socials {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.header__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(16,27,32,.15);
    transition: all .3s;
    overflow: hidden;
}

.header__social-link:hover {
    border-color: var(--dark);
    background: rgba(16,27,32,.05);
    transform: translateY(-2px);
}

.header__social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* Mobile menu socials */
.mobile-menu__socials {
    display: flex;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(16,27,32,.08);
}

.mobile-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(16,27,32,.2);
    transition: all .3s;
}

.mobile-social-link:hover {
    border-color: var(--dark);
    background: rgba(16,27,32,.05);
}

.mobile-social-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

/* PAGE HERO */
.page-hero {
    padding: 0 0 40px;
    text-align: center;
}

.page-hero__title {
    font-size: 56px;
    font-weight: 400;
    letter-spacing: .02em;
    text-transform: uppercase;
    line-height: 1.1;
}

.page-hero__crumbs {
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(16,27,32,.55);
    margin-bottom: 16px;
}

/* COLLAB INTRO */
.collab-intro {
    padding: 40px 0 80px;
    border-top: 1px solid rgba(16,27,32,.1);
}

.collab-intro__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.collab-intro__title {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: .02em;
    margin-bottom: 32px;
}

.collab-intro__right p {
    font-size: 13px;
    line-height: 1.8;
    color: var(--g60);
    margin-bottom: 20px;
}

.collab-intro__right p:last-child {
    margin-bottom: 0;
}

/* BUTTONS */
.btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border: 1px solid var(--dark);
    border-radius: 999px;
    background: transparent;
    font-family: inherit;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--dark);
    cursor: pointer;
    transition: all .3s;
}

.btn-pill:hover {
    background: var(--dark);
    color: #fff;
}

.btn-dark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    border: 1px solid var(--dark);
    border-radius: 999px;
    background: var(--dark);
    font-family: inherit;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #fff;
    cursor: pointer;
    transition: all .3s;
}

.btn-dark:hover {
    background: transparent;
    color: var(--dark);
}

/* =============================================
   COLLAB VIDEO — вместо баннерной фотки
   ============================================= */

.collab-video {
    width: 100%;
    line-height: 0;
}

.collab-video__video {
    width: 100%;
    height: auto;
    display: block;
}

/* =============================================
   COLLAB BENEFITS — EDITORIAL LIST STYLE
   ============================================= */

.collab-benefits {
    padding: 100px 0;
}

.collab-benefits__header {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 0;
}

.collab-benefits__title {
    font-size: 32px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .02em;
    white-space: nowrap;
    margin: 0;
}

.collab-benefits__line {
    flex: 1;
    height: 1px;
    background: rgba(16,27,32,.15);
}

.benefits-list {
    display: flex;
    flex-direction: column;
}

.benefit-row {
    display: grid;
    grid-template-columns: 56px 1fr 1fr;
    gap: 0 48px;
    align-items: center;
    padding: 28px 0;
    border-bottom: 1px solid rgba(16,27,32,.1);
    transition: background .2s;
    cursor: default;
}

.benefit-row:first-child {
    border-top: 1px solid rgba(16,27,32,.1);
    margin-top: 40px;
}

.benefit-row:hover {
    background: rgba(16,27,32,.02);
}

.benefit-row:hover .benefit-row__num {
    opacity: 1;
}

.benefit-row__num {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: .12em;
    color: var(--dark);
    opacity: .3;
    transition: opacity .3s;
    padding-top: 2px;
}

.benefit-row__heading {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .02em;
    text-transform: uppercase;
    color: var(--dark);
    margin: 0;
}

.benefit-row__text {
    font-size: 13px;
    line-height: 1.75;
    color: var(--g60);
    margin: 0;
}

/* CTA — две кнопки рядом */
.collab-benefits__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 64px;
    flex-wrap: wrap;
}

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

@media (max-width: 900px) {
    .header__nav     { display: none; }
    .header__socials { display: none; }
    .header__burger  { display: block; }
}

@media (max-width: 1100px) {
    .collab-intro__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .benefit-row {
        grid-template-columns: 56px 1fr;
        grid-template-rows: auto auto;
    }

    .benefit-row__text {
        grid-column: 2 / 3;
        margin-top: 8px;
    }
}

@media (max-width: 768px) {
    .page-hero__title {
        font-size: 36px;
    }

    .collab-benefits__title {
        font-size: 24px;
    }
}

@media (max-width: 600px) {
    .page-hero__title {
        font-size: 28px;
    }

    .collab-intro__title {
        font-size: 20px;
    }

    .collab-benefits__header {
        gap: 20px;
    }

    .collab-benefits__title {
        font-size: 20px;
    }

    .benefit-row {
        grid-template-columns: 40px 1fr;
        grid-template-rows: auto auto;
        gap: 0 24px;
        padding: 24px 0;
    }

    .benefit-row__num     { font-size: 10px; }
    .benefit-row__heading { font-size: 13px; }

    .benefit-row__text {
        grid-column: 2 / 3;
        font-size: 12px;
        margin-top: 6px;
    }

    .collab-benefits__cta {
        flex-direction: column;
        gap: 12px;
    }
}