* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; 
}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    background-color: #3A3432; 
    background-repeat: repeat;
    background-attachment: fixed;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, 
h2, 
h3, 
h4, 
.page-title, 
.trio-num, 
.acc-content h3,
.footer-contacts h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
}



.fixed-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(109, 88, 84, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px); 
    z-index: 1100;
    padding: 15px 0;
    margin: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

.header-center-title {
    text-align: center;
    white-space: nowrap;
    flex-shrink: 1;
}

.menu-trigger, 
.contact-link {
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: clamp(0.56rem, 1.1vw, 0.7rem);
    letter-spacing: clamp(1px, 0.25vw, 2px);
    padding: 8px clamp(10px, 2vw, 24px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    transition: 0.3s;
}

.menu-trigger:hover, 
.contact-link:hover {
    background: #fff;
    color: #6d5854;
}

.header-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: #fff;
    list-style: none;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.header-dropdown a {
    display: block;
    padding: 12px 20px;
    color: #6d5854;
    text-decoration: none;
    font-size: 0.7rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.header-dropdown a:hover {
    background: rgba(109, 88, 84, 0.05);
    padding-left: 25px;
    border-left: 3px solid #6d5854;
    font-weight: bold;
}

.menu-wrapper {
    position: relative;
}

.menu-trigger {
    display: inline-block;
    background: transparent;
    cursor: pointer;
    list-style: none;
}

.menu-trigger::-webkit-details-marker {
    display: none;
}

.menu-wrapper[open] .header-dropdown {
    opacity: 1;
    visibility: visible;
}

.menu-wrapper[open] .menu-arrow {
    display: inline-block;
    transform: rotate(180deg);
}

.lookbook-container {
    width: min(1400px, 100%);
    margin: 0 auto;
    padding-top: 160px;
}

@keyframes cinematicFadeUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.contents-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    margin: 100px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.content-card {
    padding: 60px 20px;
    text-decoration: none;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: 0.5s;
}

.content-card:last-child {
    border-right: none;
}

.content-card:hover {
    background: rgba(255, 255, 255, 0.03);
}

.c-num {
    font-size: 0.8rem;
    opacity: 0.4;
    margin-bottom: 20px;
}

.content-card h2 {
    font-size: 1.6rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.content-card p {
    font-size: 0.7rem;
    opacity: 0.7;
    text-transform: uppercase;
}

.dropdown-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: 0.4s;
    margin-top: 20px;
}

.content-card:hover .dropdown-list {
    opacity: 1;
}

.dropdown-list li {
    font-size: 0.55rem;
    text-transform: uppercase;
    opacity: 0.5;
}

.dropdown-list li:not(:last-child)::after {
    content: "•";
    margin-left: 8px;
}

/* General Sections */
.lookbook-page {
    padding: 70px 0 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.page-title {
    font-size: 3rem;
    margin-bottom: 25px;
    text-align: center;
    text-transform: uppercase;
}

.trend-card {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.trend-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-style: italic;
}

/* 01. Basics Grid */
.equal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0 60px;
    max-width: 1400px;
    margin: 0 auto;
    height: 700px;
}

.grid-col-tall, 
.grid-col-tall .gallery-item {
    height: 100%;
}

.grid-col-quad {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
}

.grid-col-quad .gallery-item {
    height: 100%;
}

.gallery-item {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.image-caption {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(109, 88, 84, 0.9);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    opacity: 0;
    transition: 0.5s ease;
    text-align: center;
    padding: 20px;
}

.gallery-item:hover .image-caption,
.gallery-item:focus .image-caption,
.gallery-item:focus-within .image-caption {
    opacity: 1;
}

.image-caption h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.image-caption p {
    font-size: 0.8rem;
    line-height: 1.5;
    opacity: 0.9;
}

/* 02. Stack Container */
.stack-container {
    position: relative;
    max-width: 1200px;
    height: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

.stack-item {
    position: absolute;
    display: flex;
    align-items: flex-end;
    transition: all 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.item-1 {
    width: 350px;
    height: 500px;
    top: 0;
    left: 5%;
    z-index: 1;
}

.item-2 {
    width: 300px;
    height: 400px;
    top: 150px;
    left: 35%;
    z-index: 3;
}

.item-3 {
    width: 400px;
    height: 550px;
    top: 50px;
    right: 5%;
    z-index: 2;
}

.item-4 {
    width: 350px;
    height: 450px;
    bottom: 50px;
    left: 15%;
    z-index: 4;
}

.item-5 {
    width: 320px;
    height: 450px;
    bottom: 0;
    right: 20%;
    z-index: 2;
}

.image-box {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(20%);
    transition: 0.5s ease;
}

.side-info {
    position: absolute;
    left: 105%;
    bottom: 20px;
    width: max-content;
    max-width: 220px;
    background: rgba(109, 88, 84, 0.95);
    padding: 15px 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateX(-10px);
    transition: 0.5s ease;
    pointer-events: none;
    z-index: 20;
}

.side-info span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    margin-bottom: 5px;
}

.side-info p {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
    color: #fff;
    margin: 0;
}

.item-3 .side-info, 
.item-5 .side-info {
    left: auto;
    right: 105%;
    transform: translateX(10px);
}

.stack-item:hover,
.stack-item:focus,
.stack-item:focus-within {
    z-index: 10;
    transform: scale(1.02);
}

.stack-item:hover .image-box,
.stack-item:focus .image-box,
.stack-item:focus-within .image-box {
    filter: grayscale(0%);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.stack-item:hover .side-info,
.stack-item:focus .side-info,
.stack-item:focus-within .side-info {
    opacity: 1;
    transform: translateX(10px);
}

.item-3:hover .side-info,
.item-5:hover .side-info,
.item-3:focus .side-info,
.item-5:focus .side-info,
.item-3:focus-within .side-info,
.item-5:focus-within .side-info {
    transform: translateX(-10px);
}

.editorial-trio {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 40px;
}

.trio-col {
    position: relative;
    display: flex;
    flex-direction: column;
}

.col-down {
    margin-top: 150px;
}

.trio-num {
    font-size: 8rem;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.15);
    position: absolute;
    top: -40px;
    left: -20px;
    z-index: 5;
    pointer-events: none;
    transition: 0.5s ease;
}

.num-bottom {
    top: auto;
    bottom: -40px;
    right: -20px;
    left: auto;
}

.trio-col:hover .trio-num {
    color: rgba(255, 255, 255, 0.02);
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.4);
    transform: scale(1.05) translateY(-10px);
}

.trio-img-wrap {
    width: 100%;
    height: 600px;
    overflow: hidden;
    z-index: 1;
}

.trio-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.trio-col:hover .trio-img {
    transform: scale(1.05);
}

.trio-text {
    margin-top: 25px;
    z-index: 2;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.text-top {
    margin-top: 0;
    margin-bottom: 25px;
}

.trio-text h3 {
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.trio-text p {
    font-size: 0.8rem;
    opacity: 0.7;
    font-style: italic;
    line-height: 1.5;
}

/* 04. Accordion */
.accordion-gallery {
    display: flex;
    width: 100%;
    max-width: 1400px;
    height: 600px;
    margin: 60px auto;
    gap: 10px;
    padding: 0 40px;
}

.acc-item {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    display: flex;
    align-items: flex-end;
}

.acc-item:hover,
.acc-item:focus,
.acc-item:focus-within,
.acc-item.active-acc {
    flex: 4;
}

.acc-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
    opacity: 0.6;
    transition: 0.6s ease;
}

.acc-item:hover::before,
.acc-item:focus::before,
.acc-item:focus-within::before {
    opacity: 0.8;
}

.acc-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    transition-delay: 0.1s;
}

.acc-item:hover .acc-content,
.acc-item:focus .acc-content,
.acc-item:focus-within .acc-content,
.acc-item.active-acc .acc-content {
    opacity: 1;
    transform: translateY(0);
}

.acc-content h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
}

.acc-content p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    opacity: 0.9;
    max-width: 500px;
}

.acc-tip {
    display: inline-block;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-style: italic;
}

.pantone-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.pantone-card {
    background: transparent;
    display: flex;
    flex-direction: column;
    transition: transform 0.4s ease;
}

.pantone-card:hover {
    transform: translateY(-10px);
}

.pantone-color {
    width: 100%;
    height: 220px;
    margin-bottom: 15px;
}

.pantone-info {
    color: #fff;
    padding-top: 15px;
    text-align: left;
}

.pantone-info h3 {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 8px;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 12px;
}

.pantone-info span {
    font-size: 0.75rem;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
    display: block;
}

/* Stylist Advice */
.stylist-advice-box {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 80px auto 40px;
    padding: 60px 0;
    background: transparent;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.advice-text {
    width: 45%;
}

.color-combos {
    width: 45%;
}


.stylist-advice-box h3 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 25px;
    font-style: italic;
}

.advice-text p {
    font-size: 1.1rem;
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    line-height: 1.6;
    opacity: 0.9;
}

.combo-list {
    list-style: none;
}

.combo-list li {
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dot {
    display: inline-block;
    width: 28px; 
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); 
    flex-shrink: 0; 
}

.footer-contacts {
    padding: 60px 20px 80px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
}

.social-icons {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
    margin-bottom: 40px;
}

.email-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.social-link {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.social-link:hover {
    transform: translateY(-5px);
}

.social-icon-img {
    object-fit: contain;
    display: block;
    opacity: 0.85;
    transition: 0.3s;
}

.social-link:hover .social-icon-img {
    opacity: 1;
}

.telegram-icon-img {
    width: 42px;
    height: 42px;
}

.mail-icon-img {
    width: 52px;
    height: 52px;
}

.phone-icon-img {
    width: 50px;
    height: 50px;
}

.footer-contacts h3 {
    font-size: 2.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 30px;
    color: #fff;
}

.footer-contacts p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

.back-to-contents {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #fff;
    color: #6d5854;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.back-to-contents:hover {
    transform: translateY(-8px);
    background: #6d5854;
    color: #fff;
    border: 2px solid #fff;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.email-hint {
    font-size: 0.8rem;
    opacity: 0.7;
    margin: 0;
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: -80px;
    margin-bottom: -80px; 
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(58, 52, 50, 0.5); 
    color: #fff;
    text-align: center;
}

.hero-title {
    font-size: 5rem;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    letter-spacing: 8px;
    margin-bottom: 20px;
    animation: cinematicFadeUp 1s ease both;
}

.hero-subtitle {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0.9;
    animation: cinematicFadeUp 1s ease both;
    animation-delay: 0.2s;
}

.page-footer {
    padding: 24px 20px;
}



/* Планшет: 1024px */
@media (max-width: 1024px) {
    .lookbook-container {
        width: 100%;
        max-width: 100%;
        padding-top: 140px;
    }

    .header-content {
        padding: 0 32px;
    }

    .hero-section {
        height: 80vh;
        margin-top: -60px;
        margin-bottom: -40px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .contents-grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin: 70px 24px;
    }

    .content-card {
        width: 33.333%; 
        min-height: 280px;
        padding: 42px 16px;
    }

    .equal-grid {
        grid-template-columns: 1fr;
        height: auto;
        padding: 0 32px;
    }

    .grid-col-tall .gallery-item {
        min-height: 520px;
    }

    .grid-col-quad .gallery-item {
        min-height: 330px;
    }

    .stack-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center; 
        gap: 24px; 
        height: auto;
        padding: 0 32px;
    }

    .stack-item,
    .item-1,
    .item-2,
    .item-3,
    .item-4,
    .item-5 {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        left: auto;
        width: calc((100% - 24px) / 2); 
        height: 420px;
    }

    .side-info {
        left: 16px;
        right: 16px;
        bottom: 16px;
        width: auto;
        max-width: none;
        opacity: 1;
        transform: none;
    }

    .item-3 .side-info,
    .item-5 .side-info {
        left: 16px;
        right: 16px;
        transform: none;
    }

    .editorial-trio {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 40px; 
        padding: 0 32px;
    }

    .col-down {
        margin-top: 0;
    }

    .trio-img-wrap {
        height: 480px;
    }

    .accordion-gallery {
        display: flex;
        flex-wrap: wrap;
        justify-content: center; 
        gap: 10px; 
        height: auto;
        padding: 0 32px;
    }

    .acc-item,
    .acc-item:hover,
    .acc-item.active-acc {
        flex: initial;
        width: calc((100% - 10px) / 2); 
        min-height: 360px;
    }

    .acc-content h3 {
        font-size: 2rem;
        white-space: normal;
    }

    .pantone-gallery {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 32px;
    }
    
    .stylist-advice-box {
        margin: 60px 32px 40px;
        gap: 30px;
    }

    .trio-col {
        width: calc((100% - 40px) / 2); 
    }

    .accordion-gallery .acc-content,
    .accordion-gallery .acc-item.active-acc .acc-content {
        opacity: 0;
        transform: translateY(20px);
        pointer-events: none;
    }

    .accordion-gallery .acc-item:hover .acc-content,
    .accordion-gallery .acc-item:active .acc-content,
    .accordion-gallery .acc-item:focus .acc-content,
    .accordion-gallery .acc-item:focus-within .acc-content {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
}

@media (max-width: 600px) {
    .fixed-header {
        width: 100%;
        padding: 8px 0;
    }

    .header-content {
        max-width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        padding: 0 14px;
        align-items: center;
    }

    .header-center-title {
        position: static;
        transform: none;
        grid-column: 1 / -1;
        grid-row: 1;
        width: 100%;
        text-align: center;
        font-size: 0.72rem;
        line-height: 1.1;
    }

    .header-content nav:first-child {
        grid-column: 1 / 2;
        grid-row: 2;
        justify-self: start;
        width: auto;
    }

    .header-content nav:last-child {
        grid-column: 2 / 3;
        grid-row: 2;
        justify-self: end;
        width: auto;
        display: flex;
        gap: 8px;
    }

    .menu-trigger,
    .contact-link {
        padding: 7px 10px;
        font-size: 0.56rem;
        letter-spacing: 1px;
        white-space: nowrap;
    }

    .menu-wrapper {
        position: static;
    }

    .header-dropdown {
        position: fixed;
        top: 80px;
        left: 12px;
        right: 12px;
        width: auto;
        max-width: none;
        margin-top: 0;
        transform: none;
        z-index: 2000;
    }

    .header-dropdown a {
        padding: 14px 18px;
        font-size: 0.72rem;
        white-space: normal;
    }

    .lookbook-container {
        width: 100%;
        padding-top: 130px;
    }

    .hero-section {
        width: 100%;
        height: 62vh;
        margin: -25px 0 0;
    }

    .hero-title {
        max-width: 100%;
        font-size: 2.1rem;
        letter-spacing: 2px;
        white-space: normal;
    }

    .hero-subtitle {
        font-size: 0.72rem;
        letter-spacing: 2px;
        padding: 0 20px;
    }

    .contents-grid,
    .equal-grid,
    .grid-col-quad,
    .stack-container,
    .editorial-trio,
    .accordion-gallery,
    .pantone-gallery {
        display: grid;
        grid-template-columns: 1fr;
        width: calc(100% - 24px);
        max-width: calc(100% - 24px);
        margin-left: 12px;
        margin-right: 12px;
        padding-left: 0;
        padding-right: 0;
    }

    .content-card {
        min-height: auto;
        padding: 28px 16px;
    }

    .content-card h2 {
        font-size: 1.6rem;
        word-break: normal;
    }

    .pantone-card,
    .pantone-info,
    .combo-list li {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .stylist-advice-box {
        flex-direction: column;
        width: auto;
        margin: 40px 12px 28px;
        padding: 28px 0;
    }

    .advice-text,
    .color-combos {
        width: 100%;
    }

    .acc-content h3 {
        white-space: normal;
    }

    .footer-contacts {
        padding: 36px 16px 120px;
    }

    .social-icons {
        gap: 24px;
        margin-bottom: 24px;
    }

    .footer-contacts p {
        font-size: 0.55rem;
        line-height: 1.5;
        letter-spacing: 1.5px;
    }

    .email-hint {
        font-size: 0.62rem;
        line-height: 1.5;
        letter-spacing: 1.2px;
        overflow-wrap: anywhere;
    }

    .back-to-contents {
        width: 44px;
        height: 44px;
        right: 18px;
        bottom: 96px;
    }

    .accordion-gallery .acc-content,
    .accordion-gallery .active-acc .acc-content {
        opacity: 0;
        transform: translateY(20px);
        pointer-events: none;
    }

    .accordion-gallery .acc-item:hover .acc-content,
    .accordion-gallery .acc-item:active .acc-content,
    .accordion-gallery .acc-item:focus .acc-content,
    .accordion-gallery .acc-item:focus-within .acc-content {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .content-card,
    .trio-col,
    .pantone-card,
    .stack-item,
    .acc-item {
        width: 100% !important;
    }
}