/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.05;
    color: #292929;
    background: #fff;
    letter-spacing: -0.5px;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: pointer;
}

/* ===== ANIMATIONS ===== */
.animate-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== HERO SECTION ===== */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0 0;
}

.hero__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.hero__titles {
    flex: 1;
}

.hero__title {
    font-size: 93px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -2px;
    color: #292929;
    text-transform: uppercase;
}

.hero__right {
    flex-shrink: 0;
    text-align: right;
    padding-top: 10px;
}

.hero__logo {
    width: 140px;
    margin-left: auto;
    margin-bottom: 40px;
}

.hero__logo img {
    width: 100%;
}

.hero__subtitle {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    color: #292929;
    max-width: 240px;
    margin-left: auto;
}

.hero__bottom {
    display: grid;
    grid-template-columns: 55% 1fr;
    gap: 40px;
    align-items: start;
}

.hero__image {
    width: 100%;
}

.hero__image img {
    width: 100%;
    height: auto;
}

.hero__bottom-right {
    padding-top: 20px;
}

.hero__nav {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
}

.hero__nav-btn {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 25px;
    font-weight: 400;
    color: #292929;
    cursor: pointer;
    opacity: 0.4;
    transition: opacity 0.3s;
    letter-spacing: -0.5px;
}

.hero__nav-btn.active {
    opacity: 1;
}

.hero__nav-btn:hover {
    opacity: 0.7;
}

.hero__intro-text {
    font-size: 16px;
    line-height: 1.05;
    color: #292929;
}

.hero__intro-text p {
    margin-bottom: 16px;
}

/* ===== INTRO SECTION ===== */
.intro {
    padding: 40px 0 80px;
}

.intro__container {
    max-width: 1200px;
    margin: 0 auto;
}

.intro__columns {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 60px;
}

.intro__col--right {
    max-width: 550px;
}

.intro__text {
    font-size: 16px;
    line-height: 1.05;
    color: #292929;
    margin-bottom: 16px;
}

.intro__text--accent {
    font-size: 25px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1px;
}

.intro__text--medium {
    font-size: 25px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -1px;
}

.intro__banner {
    width: 100%;
    margin-bottom: 40px;
    overflow: hidden;
}

.intro__banner img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.intro__product-row {
    display: grid;
    grid-template-columns: 263fr 262fr 535fr;
    gap: 20px;
    margin-bottom: 60px;
}

.intro__product-small img,
.intro__product-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.intro__description {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

/* ===== MOODS SECTION ===== */
.moods {
    padding: 0 0 80px;
}

.moods__flipper {
    max-width: 1200px;
    margin: 0 auto;
    perspective: 1500px;
}

.mood {
    display: none;
    width: 100%;
    backface-visibility: hidden;
}

.mood--active {
    display: block;
    animation: flipIn 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
}

@keyframes flipIn {
    0% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

.mood__container {
    width: 100%;
}

.mood__header {
    margin-bottom: 40px;
}

.mood__number-block {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
}

.mood__number {
    font-size: 107px;
    font-weight: 700;
    line-height: 1;
    color: #292929;
}

.mood__divider {
    font-size: 87px;
    font-weight: 700;
    color: #292929;
    line-height: 1;
}

.mood__title {
    font-size: 25px;
    font-weight: 800;
    color: #ff0000;
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.mood__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

.mood__text {
    font-size: 16px;
    line-height: 1.05;
    color: #292929;
    margin-bottom: 16px;
}

.mood__bag-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mood__bag-img {
    max-width: 100%;
    max-height: 700px;
    object-fit: contain;
}

.mood__outfits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.mood__outfit-item {
    overflow: hidden;
    display: block;
}

.mood__outfit-item img {
    width: 100%;
    height: 310px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.mood__outfit-item:hover img {
    transform: scale(1.03);
}

.mood__product-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 16px 0;
    margin-bottom: 40px;
    border-top: 1px solid #eee;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

.mood__product-card:hover {
    opacity: 0.8;
}

.mood__product-img {
    width: 264px;
    flex-shrink: 0;
    background: #f5f5f5;
    padding: 10px;
}

.mood__product-img img {
    width: 100%;
}

.mood__product-name {
    font-size: 16px;
    font-weight: 600;
    color: #292929;
    margin-bottom: 4px;
}

.mood__product-detail {
    font-size: 14px;
    font-weight: 400;
    color: #292929;
}

.mood__model {
    width: 100%;
    overflow: hidden;
}

.mood__model img {
    width: 100%;
    max-height: 800px;
    object-fit: cover;
}

/* ===== FOOTER ===== */
.footer {
    background-color: #000000;
    padding: 60px;
}

.footer__container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer__title {
    font-size: 26px;
    font-weight: 500;
    color: #ff0000;
    line-height: 1.55;
    margin-bottom: 40px;
}

.footer__credit {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    line-height: 1.55;
    margin-bottom: 4px;
    opacity: 0.7;
}

.footer__legal {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.footer__legal-text {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    line-height: 1.25;
    opacity: 0.5;
}

/* ===== RESPONSIVE: TABLET ===== */
@media (max-width: 1240px) {
    .hero,
    .intro__container,
    .moods__flipper {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (max-width: 1200px) {
    .hero__title {
        font-size: 72px;
    }

    .mood__number {
        font-size: 80px;
    }

    .mood__divider {
        font-size: 65px;
    }
}

@media (max-width: 960px) {
    .hero {
        padding-top: 30px;
    }

    .hero__top {
        flex-direction: column;
    }

    .hero__title {
        font-size: 56px;
    }

    .hero__right {
        text-align: left;
        margin-top: 20px;
    }

    .hero__logo {
        margin-left: 0;
        margin-bottom: 20px;
    }

    .hero__subtitle {
        margin-left: 0;
    }

    .hero__bottom {
        grid-template-columns: 1fr;
    }

    .intro__columns {
        justify-content: flex-start;
    }

    .intro__col--right {
        max-width: 100%;
    }

    .intro__text--accent,
    .intro__text--medium {
        font-size: 22px;
    }

    .intro__product-row {
        grid-template-columns: 1fr 1fr;
    }

    .intro__product-large {
        grid-column: span 2;
    }

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

    .mood__content {
        grid-template-columns: 1fr;
    }

    .mood__number {
        font-size: 57px;
    }

    .mood__divider {
        font-size: 52px;
    }

    .mood__title {
        font-size: 16px;
    }

    .mood__outfits {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .mood__outfit-item img {
        height: 264px;
    }

    .mood__product-img {
        width: 200px;
    }

    .footer {
        padding: 40px 30px;
    }

    .footer__title {
        font-size: 22px;
    }
}

/* ===== RESPONSIVE: MOBILE ===== */
@media (max-width: 640px) {
    .hero,
    .intro__container,
    .moods__flipper {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero__title {
        font-size: 36px;
    }

    .hero__nav {
        gap: 20px;
    }

    .hero__nav-btn {
        font-size: 16px;
    }

    .hero__logo {
        width: 100px;
    }

    .intro__text--accent,
    .intro__text--medium {
        font-size: 20px;
    }

    .intro__product-row {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .mood__number {
        font-size: 57px;
    }

    .mood__divider {
        font-size: 48px;
    }

    .mood__bag-img {
        max-height: 400px;
    }

    .mood__outfits {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .mood__outfit-item img {
        height: 168px;
    }

    .mood__product-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .mood__product-img {
        width: 100%;
        max-width: 264px;
    }

    .footer {
        padding: 30px 20px;
    }

    .footer__title {
        font-size: 20px;
    }

    .footer__legal {
        flex-direction: column;
        gap: 10px;
    }

    .footer__legal-text {
        font-size: 12px;
    }
}

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

    .mood__number {
        font-size: 42px;
    }

    .mood__divider {
        font-size: 36px;
    }
}