body,
html {
    padding: 0;
    margin: 0;
    font-family: 'Inter';
    color: #161616;
}
* {
    box-sizing: border-box;
}
img {
    padding: 0;
    margin: 0;
    display: block;
}
.d-none {
    display: none;
}
h1, h2, h3, h4, h5, h6 {
    padding: 0;
    margin: 0;
    font-family: 'NotoSerifDisplay';
}
h1 {
    font-size: 62px;
}
h2 {
    font-size: 62px;
    font-weight: 500;
}
h3 {
    font-size: 52px;
    font-weight: 500;
}
a {
    color: inherit;
}
.btn {
    padding: 0;
    margin: 0;
    border: none;
    box-shadow: none;
    background: transparent;
    text-decoration: none;
    cursor: pointer;
    font-family: 'Inter';
}

.wcont {
    max-width: 1555px;
    margin: 0 auto;
    padding: 0 23px;
}

/* ==================== HEADER ==================== */

.header {
    height: 97px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    border-bottom: 1px solid #ebebeb;
}
.header .wcont {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    flex: 1;
}
.header_logo,
.header_logo svg {
    width: 340px;
    max-width: 44vw;
    height: 34px;
    display: block;
    outline: none;
}
.header_nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1;
    justify-content: flex-end;
}
.header_nav a {
    white-space: nowrap;
    text-transform: uppercase;
    text-align: center;
    text-decoration: none;
    color: #161616;
}
.nav-header-link {
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    position: relative;
    margin: 0 20px;
}
.nav-header-link::before {
    content: '';
    border-bottom: solid 2px #161616;
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0;
    transition: all ease-in-out 0.2s;
}
.nav-header-link:hover::before,
.nav-header-link.active::before {
    width: 100%;
    left: 0;
}
.icon_header_search {
    text-align: right !important;
    display: block;
    margin-left: 10px;
}
.icon_header_search svg {
    width: 24px;
    height: 24px;
}

.lang-switch {
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    text-decoration: none;
    color: #161616;
    margin-right: 24px;
    transition: opacity 0.2s ease;
}
.lang-switch:hover {
    opacity: 0.6;
}
.footer_bottom_lang {
    color: #b7b7b7;
    font-size: 13px;
    margin-right: 8px;
}
.footer_bottom_lang:hover {
    color: #fff;
    opacity: 1;
}

/* ==================== SECTION TITLE / MORE LINK ==================== */

.section-title-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 32px;
}
.link-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    color: #161616;
    white-space: nowrap;
}
.link-more svg {
    width: 6px;
    height: 10px;
}
.link-more-center {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

/* ==================== HERO / PODIUM ==================== */

.section-podium {
    margin-top: 40px;
}

.hero-slider-track {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #ededed;
}
.hero-slider-slide {
    position: absolute;
    inset: 0;
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
}
.hero-slider-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}
.hero-slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-slider-captions {
    position: relative;
    min-height: 160px;
    margin-top: 13px;
}
.hero-slider-caption {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
}
.hero-slider-caption.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}
.hero-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}
.hero-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(22, 22, 22, 0.25);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.2s ease;
}
.hero-slider-dot.is-active {
    background: #161616;
}

/* ==================== AFISHA (3-card row) ==================== */

.section-afusha {
    margin-top: 50px;
}
.section-afusha-items {
    display: flex;
    flex-direction: row;
    gap: 23px;
}
.section-afusha-item {
    position: relative;
    flex: 1;
    max-width: 503px;
    display: block;
    text-decoration: none;
    color: #161616;
}
.section-afusha-item img {
    object-fit: cover;
    width: 100%;
    height: 283px;
    max-width: 503px;
    display: block;
    margin-bottom: 18px;
}
.section-afusha-item-title {
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
    display: block;
}
.section-afusha-item:hover .section-afusha-item-title {
    color: #161616b0;
}

/* Beige promo block (used in afisha row and journal grid) */
.promo-block {
    width: 100%;
    height: 283px;
    max-width: 503px;
    background: #ECE7DE;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 18px;
    padding: 20px;
}
.promo-block-inner {
    font-family: 'Inter';
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.5;
}
.promo-block-inner .promo-title {
    font-size: 24px;
}
.promo-block-inner .promo-sub {
    font-size: 18px;
    font-weight: 700;
    margin-top: 8px;
}

/* ==================== NEW COLLECTIONS ==================== */

.section-newcollections {
    margin-top: 80px;
}
.section-newcollections-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 23px;
}
.section-newcollections-item {
    color: #161616;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}
.section-newcollections-item-img {
    display: inline-block;
    position: relative;
}
.section-newcollections-item-img img {
    object-fit: cover;
    width: 100%;
    aspect-ratio: 388 / 546;
    height: auto;
}
.section-newcollections-item-img .icon_open_gallery {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    bottom: 20px;
    right: 20px;
    height: 40px;
    width: 40px;
    background: rgba(22, 22, 22, 0.55);
    backdrop-filter: blur(2px);
    border-radius: 20px;
    overflow: hidden;
    transition: width 0.35s ease;
}
.section-newcollections-item:hover .icon_open_gallery {
    width: 175px;
}
.icon_open_gallery_label {
    display: block;
    flex-shrink: 0;
    color: #fff;
    font-size: 13px;
    line-height: 40px;
    white-space: nowrap;
    width: 0;
    padding-left: 0;
    opacity: 0;
    overflow: hidden;
    transition: width 0.35s ease, padding-left 0.35s ease, opacity 0.15s ease;
}
.section-newcollections-item:hover .icon_open_gallery_label {
    width: 135px;
    padding-left: 16px;
    opacity: 1;
    transition: width 0.35s ease, padding-left 0.35s ease, opacity 0.2s ease 0.15s;
}
.icon_open_gallery_icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(22, 22, 22, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon_open_gallery_icon svg {
    width: 18px;
    height: 13px;
    display: block;
}
.section-newcollections-item-title {
    font-size: 22px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 20px;
}
.section-newcollections-item-date {
    font-weight: 400;
    font-size: 18px;
    color: #676767;
    margin-top: 12px;
}

/* ==================== OFFICIAL PARTNERS ==================== */

.section-partners {
    margin-top: 100px;
}
.section-partners h3 {
    margin-bottom: 40px;
}
.section-partners-items {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 90px;
}
.section-partners-item {
    display: flex;
    align-items: center;
    height: 64px;
}
.section-partners-item img {
    max-height: 64px;
    max-width: 200px;
    width: auto;
    object-fit: contain;
}

/* ==================== VIDEO BANNER ==================== */

.section-video {
    margin-top: 100px;
}
.section-video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 8;
    background: #000;
    overflow: hidden;
    cursor: pointer;
    display: block;
    border: none;
    padding: 0;
    text-align: left;
}
.section-video-frame img,
.section-video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}
.section-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 88px;
    height: 88px;
    border-radius: 50%;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.section-video-play svg {
    width: 22px;
    height: 26px;
    margin-left: 4px;
}
.section-video-caption {
    margin-top: 28px;
}
.section-video-caption h4 {
    font-family: 'NotoSerifDisplay';
    font-style: italic;
    font-weight: 500;
    font-size: 26px;
}
.section-video-caption p {
    font-size: 15px;
    color: #676767;
    margin-top: 8px;
}

/* ==================== VIDEO MODAL ==================== */

.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1000;
    align-items: center;
    justify-content: center;
}
.video-modal.is-open {
    display: flex;
}
.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}
.video-modal-dialog {
    position: relative;
    width: min(1000px, 92vw);
    z-index: 1;
}
.video-modal-close {
    position: absolute;
    top: -44px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    padding: 4px;
}
.video-modal-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
}
.video-modal-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ==================== UKRAINIAN DESIGNERS ==================== */

.section-designers {
    margin-top: 100px;
}
.section-designers-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 23px;
}
.section-designers-item {
    color: #161616;
    text-decoration: none;
    display: block;
}
.section-designers-item img {
    width: 100%;
    aspect-ratio: 388 / 546;
    object-fit: cover;
}
.section-designers-item-name {
    display: block;
    margin-top: 18px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.4;
}

/* ==================== FOOTER ==================== */

.footer {
    background: #161616;
    color: #fff;
    margin-top: 80px;
    padding-top: 50px;
}
.footer_top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 60px;
}
.footer_logo,
.footer_logo svg {
    display: block;
    width: 300px;
    height: 21px;
}
.footer_address {
    margin-top: 12px;
    font-size: 14px;
    color: #b7b7b7;
}
.footer_find {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
    margin-right: 60px;
}
.footer_find_label {
    font-size: 13px;
    text-transform: uppercase;
    color: #b7b7b7;
    letter-spacing: 0.5px;
}
.footer_socials {
    display: flex;
    align-items: center;
    gap: 12px;
}
.footer_socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s ease;
}
.footer_socials a:hover {
    background: #2b2b2b;
}
.footer_socials svg {
    width: 20px;
    height: 20px;
}
.footer_contact {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #fff;
    color: #fff;
    padding: 14px 26px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}
.footer_contact svg {
    width: 6px;
    height: 10px;
}
.footer_divider {
    border-top: 1px solid #333;
}
.footer_bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 24px 0;
    font-size: 13px;
    color: #b7b7b7;
}
.footer_bottom_nav {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}
.footer_bottom_nav a {
    text-decoration: none;
    color: #b7b7b7;
    text-transform: uppercase;
    font-size: 13px;
}
.footer_bottom_nav a:hover,
.footer_bottom_copy {
    color: #fff;
}

/* ==================== BREADCRUMB / PAGE HEADER ==================== */

.breadcrumb-line {
    margin-top: 32px;
    font-size: 14px;
    color: #8b8b8b;
}
.breadcrumb-line a {
    color: #8b8b8b;
    text-decoration: none;
}
.breadcrumb-line a:hover {
    color: #161616;
}
.page-title {
    margin-top: 16px;
    margin-bottom: 40px;
}

/* ==================== JOURNAL HERO ==================== */

.section-journal-hero {
    position: relative;
    display: block;
    text-decoration: none;
    color: #fff;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-bottom: 50px;
}
.section-journal-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.section-journal-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 45%);
}
.section-journal-hero-title {
    position: absolute;
    left: 40px;
    right: 40px;
    bottom: 40px;
    z-index: 1;
    font-family: 'NotoSerifDisplay';
    font-style: italic;
    font-weight: 500;
    font-size: 40px;
    line-height: 1.3;
    max-width: 900px;
}

/* ==================== JOURNAL GRID ==================== */

.section-journal-grid {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
.journal-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 23px;
}
.journal-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 23px;
}
.journal-row-2 .section-afusha-item img,
.journal-row-2 .promo-block {
    height: 546px;
    max-width: none;
}
.journal-row-2 .section-afusha-item {
    max-width: none;
}
.journal-card-title {
    font-size: 22px;
    text-transform: uppercase;
    font-weight: 500;
    display: block;
    text-decoration: none;
    color: #161616;
}

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

@media (max-width: 1100px) {
    .header_nav a.nav-header-link {
        margin: 0 10px;
        font-size: 12px;
    }
    .section-newcollections-items,
    .section-designers-items {
        grid-template-columns: repeat(2, 1fr);
    }
    .journal-row-3 {
        grid-template-columns: 1fr;
    }
    .journal-row-2 {
        grid-template-columns: 1fr;
    }
    h1, h2 {
        font-size: 38px;
    }
    h3 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .header_nav {
        display: none;
    }
    .section-afusha-items {
        flex-direction: column;
    }
    .section-newcollections-items,
    .section-designers-items {
        grid-template-columns: 1fr;
    }
    .footer_top {
        flex-direction: column;
    }
}

/* ==================== ARTICLE / SHOW PAGE ==================== */

.article-title {
    max-width: 900px;
}
.article-hero-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    margin-bottom: 40px;
}
.article-excerpt {
    font-size: 20px;
    color: #4a4a4a;
    max-width: 800px;
    margin-bottom: 30px;
    font-weight: 500;
}
.article-content {
    max-width: 800px;
    font-size: 17px;
    line-height: 1.7;
    color: #262626;
    padding-bottom: 100px;
}
.article-content p {
    margin: 0 0 20px;
}
.article-content img {
    width: 100%;
    height: auto;
    margin: 30px 0;
}
.article-content h2, .article-content h3 {
    margin: 40px 0 16px;
    font-size: 30px;
}

/* ==================== GENERIC CARD GRID (partners / street-style / backstage / media) ==================== */

.card-grid-page {
    padding-bottom: 100px;
}
.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}
.card-grid-item {
    position: relative;
    display: block;
    text-decoration: none;
    color: #161616;
}

/* ==================== PARTNERS GRID (logo tiles) ==================== */

.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.partners-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    color: #161616;
    border: 1px solid #e5e5e5;
    padding: 40px 30px;
    min-height: 200px;
    transition: border-color 0.2s ease;
}
.partners-grid-item:hover {
    border-color: #161616;
}
.partners-grid-item img {
    max-height: 64px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    margin-bottom: 24px;
}
.partners-grid-item-title {
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
}
.partners-grid-item-excerpt {
    font-size: 13px;
    color: #676767;
    margin-top: 6px;
    display: block;
}
@media (max-width: 1100px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: 1fr;
    }
}

/* ==================== BADGES (Promo / Partner) ==================== */

.media-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    background: #161616;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 10px;
}
.media-badge.media-badge-partner {
    background: #fff;
    color: #161616;
}
.article-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}
.article-badges .media-badge {
    position: static;
}
.article-byline {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 14px;
    color: #676767;
}
.article-byline img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}
.article-byline a {
    color: #161616;
    text-decoration: none;
    font-weight: 500;
}
.article-byline a:hover {
    text-decoration: underline;
}
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
    max-width: 800px;
}
.article-tags a {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid #d5d5d5;
    border-radius: 20px;
    font-size: 13px;
    color: #161616;
    text-decoration: none;
}
.article-tags a:hover {
    background: #161616;
    color: #fff;
    border-color: #161616;
}
.card-grid-item img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    margin-bottom: 16px;
}
.card-grid-item-title {
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    display: block;
}
.card-grid-item-excerpt {
    font-size: 14px;
    color: #676767;
    margin-top: 8px;
    display: block;
}
.pagination-wrap {
    margin-top: 50px;
}

/* ==================== SEARCH PAGE ==================== */

.search-form {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin-bottom: 20px;
}
.search-form-input {
    flex: 1;
    padding: 14px 18px;
    border: 1px solid #d5d5d5;
    font-size: 16px;
    outline: none;
}
.search-form-input:focus {
    border-color: #161616;
}
.search-form .btn {
    background: #161616;
    color: #fff;
    border: none;
    padding: 0 28px;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.05em;
    cursor: pointer;
}
.search-section-title {
    margin-top: 50px;
    margin-bottom: 10px;
}

/* ==================== AUTHOR PAGE ==================== */

.author-header {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-top: 30px;
}
.author-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}
.author-position {
    color: #676767;
    font-size: 15px;
    margin-bottom: 12px;
}
.author-instagram {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #161616;
    text-decoration: none;
    margin-bottom: 16px;
}
.author-instagram svg {
    width: 16px;
    height: 16px;
}
.author-bio {
    max-width: 700px;
    font-size: 16px;
    line-height: 1.6;
    color: #262626;
}
.pagination-wrap nav > div:first-child {
    display: none;
}
.pagination-wrap ul {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 6px;
    justify-content: center;
}
.pagination-wrap .page-item {
    border: 1px solid #ddd;
}
.pagination-wrap .page-link {
    display: block;
    padding: 8px 14px;
    text-decoration: none;
    color: #161616;
}
.pagination-wrap .active .page-link {
    background: #161616;
    color: #fff;
}

@media (max-width: 1100px) {
    .card-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 768px) {
    .card-grid {
        grid-template-columns: 1fr;
    }
}
