:root {
    --font-primary: "ShareTechMono";
    --font-display: "ShareTechMono";
    --color-dark: #1A1A1A;
    --color-light: #F8F7F2;
    --color-accent: #087F8C;
    --color-accent-dark: #065A63;
    --color-gray: #7a7a7a;
    --container-width: 1240px;
    --container-padding: 2rem;
    --header-height: 80px;
}

@font-face {
    font-family: "ShareTechMono";
    src: url("fonts/ShareTechMono-Regular.eot");
    src: url("fonts/ShareTechMono-Regular.eot") format("embedded-opentype"), url("fonts/ShareTechMono-Regular.woff2") format("woff2"), url("fonts/ShareTechMono-Regular.woff") format("woff"), url("fonts/ShareTechMono-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.page {
    overflow-x: hidden;
}

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

/*section{overflow: hidden;}*/

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

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(3.2rem, 5vw, 4.8rem);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.8rem;
    color: var(--color-gray);
    max-width: 60ch;
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 1.4rem 3.2rem;
    font-size: 1.6rem;
    text-align: center;
    border-radius: 5rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn--primary {
    background-color: var(--color-accent);
    color: #fff;
}

.btn--primary:hover {
    background-color: var(--color-accent-dark);
    transform: translateY(-3px);
}

.btn--secondary {
    background-color: var(--color-light);
    color: var(--color-dark);
    border-color: var(--color-light);
}

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

[data-animate] {
    opacity: 0;
    transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}
[data-animate="fade-up"] {
    transform: translateY(30px);
}
[] {
    transform: translateX(-30px);
}
[data-animate="fade-left"] {
    transform: translateX(30px);
}
[data-animate="zoom-in"] {
    transform: scale(0.9);
}
[data-animate].is-visible {
    opacity: 1;
    transform: none;
}

.header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(248, 247, 242, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(26, 26, 26, 0.1);
}
.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}
.header__logo img {
    height: 30px;
}
.nav__list {
    display: flex;
    gap: 3rem;
}
.nav__link {
    position: relative;
    padding: 0.5rem 0;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width 0.3s ease;
}
.nav__link:hover::after {
    width: 100%;
}
.header__actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.header__action-btn {
    position: relative;
    color: var(--color-dark);
    transition: color 0.3s ease;
}
.header__action-btn:hover {
    color: var(--color-accent);
}
.header__cart-count {
    position: absolute;
    top: -5px;
    right: -8px;
    background-color: var(--color-accent);
    color: white;
    font-size: 1rem;
    width: 1.6rem;
    height: 1.6rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.burger {
    width: 24px;
    height: 18px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
}
.burger__line {
    width: 100%;
    height: 2px;
    background-color: var(--color-dark);
    transition: all 0.3s ease;
}
.burger--active .burger__line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.burger--active .burger__line:nth-child(2) {
    opacity: 0;
}
.burger--active .burger__line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    overflow: hidden;
    padding-bottom: 6rem;
}
.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.hero__background::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--color-light);
    opacity: 0.6;
}
.hero__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero__kinetic-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    pointer-events: none;
}
.hero__title {
    font-family: var(--font-display);
    text-transform: uppercase;
    text-align: center;
    font-size: clamp(6rem, 15vw, 22rem);
    line-height: 0.9;
    color: var(--color-dark);
}
.hero__title-line {
    display: block;
    transition: transform 1.2s ease-out;
}
.hero__title-line--stroke {
    color: transparent;
    -webkit-text-stroke: 2px var(--color-dark);
    text-stroke: 2px var(--color-dark);
}
.hero__content {
    position: relative;
    z-index: 3;
    text-align: center;
}
.hero__subtitle {
    font-size: 1.8rem;
    color: var(--color-dark);
    opacity: 0.9;
    max-width: 50ch;
    margin: 0 auto 3rem auto;
}
.hero__button:hover {
    transform: translateY(-3px) scale(1.05);
}

.featured-products {
    padding: 10rem 0;
    background-color: #fff;
}
.featured-products__header {
    text-align: center;
    margin-bottom: 8rem;
}
.featured-products__layout {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 8rem;
    min-height: 60vh;
}
.featured-products__nav {
    display: flex;
    align-items: center;
}
.featured-products__nav-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}
.featured-products__nav-item {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    color: var(--color-gray);
    cursor: pointer;
    position: relative;
    padding: 1rem 0 1rem 2rem;
    transition: color 0.4s ease;
}
.featured-products__nav-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 3px;
    background-color: var(--color-accent);
    transform: translateY(-50%);
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.featured-products__nav-item:hover {
    color: var(--color-dark);
}
.featured-products__nav-item--active {
    color: var(--color-dark);
}
.featured-products__nav-item--active::before {
    width: 100%;
}
.featured-products__visuals {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}
.featured-products__bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    font-size: 25vw;
    color: var(--color-light);
    z-index: 1;
    line-height: 1;
}
.featured-products__image-slider {
    width: 90%;
    height: 70%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    border-radius: 8px;
}
.featured-products__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}
.featured-products__slide--active {
    opacity: 1;
}
.featured-products__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.featured-products__info-slider {
    position: absolute;
    bottom: 0;
    left: 5%;
    width: 90%;
    height: 90px;
    z-index: 3;
    padding: 2rem;
}
.featured-products__info-slider .featured-products__slide {
    position: absolute;
    inset: 0 2rem;
    transform: translateY(150%);
    transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}
.featured-products__info-slider .featured-products__slide--active {
    transform: translateY(0);
}
.featured-products__info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 6px;
    border: 1px solid rgba(0,0,0,0.05);
}
.featured-products__category {
    font-size: 1.4rem;
    color: var(--color-gray);
}
.featured-products__price {
    font-size: 2rem;
    color: var(--color-accent);
}
.featured-products__link {
    text-decoration: underline;
}

.craftsmanship {
    padding: 12rem 0;
    overflow-x: hidden;
}
.craftsmanship__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}
.craftsmanship__visual-pane {
    position: relative;
    aspect-ratio: 4 / 5;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--color-light);
}
.craftsmanship__image-wrapper {
    position: absolute;
    inset: 0;
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
    transition: clip-path 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}
.craftsmanship__image-wrapper--active {
    clip-path: polygon(0 100%, 100% 100%, 100% 0, 0 0);
}
.craftsmanship__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.craftsmanship__content-pane {
    display: flex;
    flex-direction: column;
}
.craftsmanship__header {
    margin-bottom: 4rem;
}
.craftsmanship__features-list {
    border-top: 1px solid rgba(0,0,0,0.1);
}
.craftsmanship__feature {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    cursor: pointer;
}
.craftsmanship__feature-title {
    font-family: var(--font-display);
    font-size: 2.4rem;
    padding: 2rem 0;
    position: relative;
    transition: color 0.4s ease;
}
.craftsmanship__feature-title::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: var(--color-gray);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.craftsmanship__feature:hover .craftsmanship__feature-title {
    color: var(--color-accent);
}
.craftsmanship__feature--active .craftsmanship__feature-title {
    color: var(--color-accent);
}
.craftsmanship__feature--active .craftsmanship__feature-title::after {
    transform: translateY(-50%) rotate(45deg);
}
.craftsmanship__feature-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
}
.craftsmanship__feature-text {
    padding-bottom: 2.5rem;
    color: var(--color-gray);
    max-width: 95%;
}

.quiz-cta {
    position: relative;
    padding: 15rem 0;
    background-color: var(--color-dark);
    color: var(--color-light);
}
.quiz-cta:hover .quiz-cta__marquee {
    animation-play-state: paused;
}
.quiz-cta__visual-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}
.quiz-cta__background {
    position: absolute;
    inset: 0;
}
.quiz-cta__background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.85);
}
.quiz-cta__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: slow-zoom 25s infinite alternate ease-in-out;
}
@keyframes slow-zoom {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}
.quiz-cta__marquee-container {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: rotate(-15deg) scale(1.2);
}
.quiz-cta__marquee {
    display: flex;
    flex-shrink: 0;
    width: max-content;
    animation: scroll-left 40s linear infinite;
}
.quiz-cta__marquee--reverse {
    animation-name: scroll-right;
}
.quiz-cta__marquee-text {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 8rem);
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    padding: 0 2rem;
}
@keyframes scroll-left {
    from { transform: translateX(0%); }
    to { transform: translateX(-50%); }
}
@keyframes scroll-right {
    from { transform: translateX(-50%); }
    to { transform: translateX(0%); }
}
.quiz-cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.quiz-cta__title {
    color: var(--color-light);
}
.quiz-cta__description {
    color: rgba(241, 241, 241, 0.8);
    margin-bottom: 3.5rem;
}

.faq {
    padding: 10rem 0;
}
.faq__header {
    text-align: center;
    margin-bottom: 8rem;
}
.faq__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    min-height: 500px;
}
.faq__questions-list {
    display: flex;
    flex-direction: column;
}
.faq__question {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    cursor: pointer;
    position: relative;
    padding-left: 10px;
}
.faq__question::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: -1;
    transition:  0.6s ;
}
.faq__question-index {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--color-gray);
    transition: color 0.4s ease;
}
.faq__question-text {
    font-size: 2rem;
    transition: color 0.4s ease;
}
.faq__question--active {
    color: var(--color-light);
}
.faq__question--active::before {
    transform: translateX(100%);
    background-color: var(--color-dark);
}
.faq__question--active .faq__question-index {
    color: #FFF;
}
.faq__question--active .faq__question-text {
    color: var(--color-light);
}
.faq__answers-pane {
    position: relative; 
    overflow: hidden;
    background-color: var(--color-light);
    border-radius: 8px;
    padding: 4rem;
}
.faq__answers-bg-index {
    position: absolute;
    top: -5%;
    right: 5%;
    font-family: var(--font-display);
    font-size: 20rem;
    color: rgba(0,0,0,0.04);
    z-index: 0;
    transition: opacity 0.4s ease;
}
.faq__answers-wrapper {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}
.faq__answer {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 4rem; 
}
.faq__answer-content h3 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    margin-bottom: 1rem;
}
.faq__answer-content p {
    color: var(--color-gray);
    font-size: 1.8rem;
    line-height: 1.7;
}

.footer {
    position: relative;
    padding: 15rem 0 5rem 0;
    background-color: var(--color-accent);
    overflow: hidden;
}
.footer__background {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.footer__background::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--color-dark);
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 70%);
}
.footer__background-map {
    position: absolute;
    inset: 0;
    clip-path: polygon(0 70%, 100% 40%, 100% 100%, 0 100%);
}
.footer__map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.5) brightness(0.8);
    opacity: 0.3;
}
.footer__container {
    position: relative;
    z-index: 1;
}
.footer__layout {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 4rem;
    margin-bottom: 10rem;
}
.footer__hub {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
    transition: box-shadow 0.4s ease;
}
.footer__hub:hover {
    box-shadow: 0 0 40px rgba(8, 127, 140, 0.5);
}
.footer__hub-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.footer__logo img {
    height: 35px;
    filter: invert(1);
}
.footer__address {
    font-style: normal;
    color: var(--color-gray);
    line-height: 1.6;
}
.footer__contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.footer__contact-link {
    color: var(--color-light);
    transition: color 0.3s ease;
}
.footer__contact-link:hover {
    color: #f78073;
}
.footer__nav-group {
    display: flex;
    gap: 4rem;
    color: var(--color-light);
}
.footer__nav-group--left {
    justify-content: flex-end;
}
.footer__nav-group--right {
    justify-content: flex-start;
}
.footer__title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #fff;
}
.footer__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.footer__link {
    color: var(--color-gray);
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}
.footer__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #FFF;
    transition: width 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.footer__link:hover {
    color: #f78073;
}
.footer__link:hover::after {
    width: 100%;
}
.footer__bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 3rem;
    margin-top: 5rem;
}
.footer__copy {
    font-size: 1.4rem;
    color: var(--color-gray);
}

@media (max-width: 1024px) {

    .featured-products__layout,
    .craftsmanship__layout,
    .faq__layout,
    .footer__layout {
        grid-template-columns: 1fr;
    }
    .featured-products__visuals {
        min-height: 500px;
    }
    .featured-products__nav-list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .craftsmanship__visual-pane {
        aspect-ratio: 16/9;
        margin-bottom: 4rem;
    }
    .faq__answers-pane {
        min-height: 400px;
    }
    .footer__hub {
        order: -1;
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }
    .footer__nav-group {
        text-align: center;
    }
    .footer__nav-group--left,
    .footer__nav-group--right {
        justify-content: space-around;
        width: 100%;
    }
    .footer__link::after {
        left: 50%;
        transform: translateX(-50%);
    }
     .footer__background-map {
       display: none;
    }
    .footer
    {
        background-color: #1a1a1a;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    .nav__list {
        display: none;
    }
    .burger {
        display: flex;
    }
    .header__nav--active .nav__list {
        display: flex;
        width: 100%;
        background-color: #FFF;
        justify-content: center;
    }
    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--color-light);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        display: flex;
        
        visibility: hidden;
        opacity: 0;
        clip-path: circle(0% at calc(100% - 40px) 40px);
        transition: opacity 0.7s ease, visibility 0s 0.7s, clip-path 0.7s cubic-bezier(0.76, 0, 0.24, 1);
    }
    .header__nav--active {
        visibility: visible;
        opacity: 1;
        clip-path: circle(150% at calc(100% - 40px) 40px);
        transition: opacity 0.7s ease, visibility 0s 0s, clip-path 0.7s cubic-bezier(0.76, 0, 0.24, 1);
        z-index: 2;
        background-color: #FFF;
        height: 100vh;
    }
    .nav__list {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    .nav__item {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease 0s, transform 0.5s ease 0s;
    }
    .header__nav--active .nav__item {
        opacity: 1;
        transform: translateY(0);
    }
    .header__nav--active .nav__item:nth-child(1) { transition-delay: 0.3s; }
    .header__nav--active .nav__item:nth-child(2) { transition-delay: 0.35s; }
    .header__nav--active .nav__item:nth-child(3) { transition-delay: 0.4s; }
    .header__nav--active .nav__item:nth-child(4) { transition-delay: 0.45s; }
    .header__nav--active .nav__item:nth-child(5) { transition-delay: 0.5s; }

    .nav__link {
        font-size: 2.4rem;
    }
    .header__actions {
        gap: 1.5rem;
    }
    .header__burger {
        display: flex;
    }
    .hero__title-line--stroke {
        -webkit-text-stroke-width: 1px;
        text-stroke-width: 1px;
    }
    .quiz-cta__marquee-container {
        transform: rotate(-20deg) scale(1.5);
    }
    .footer__background::before {
        clip-path: polygon(0 0, 100% 0, 100% 30%, 0 45%);
    }
    .footer__nav-group {
        flex-direction: column;
        gap: 4rem;
    }
}
@media (max-width: 480px) {
    :root {
        --container-padding: 1.5rem;
    }
    .faq__answer-content p {
        font-size: 1.6rem;
    }
}

.story-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 90vh;
    padding: 10rem 0;
    background-color: var(--color-dark);
    color: var(--color-light);
    overflow: hidden;
}
.story-hero__background-flare {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--color-accent) 0%, rgba(8, 127, 140, 0) 70%);
    opacity: 0.15;
    transition: transform 0.8s ease-out;
    will-change: transform;
    z-index: 1;
}
.story-hero__container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.story-hero__visual {
    width: 450px;
    height: 450px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: -150px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.story-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoom-in-slow 20s infinite alternate ease-in-out;
}
@keyframes zoom-in-slow {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}
.story-hero__content {
    position: relative;
    z-index: 3;
    background: linear-gradient(180deg, rgba(26, 26, 26, 0) 0%, var(--color-dark) 40%);
    padding: 180px 3rem 3rem 3rem;
    max-width: 800px;
}
.story-hero__title {
    font-family: var(--font-display);
    font-size: clamp(4rem, 7vw, 7rem);
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 3rem;
}
.story-hero__title-line {
    display: block;
}
.story-hero__title-line--accent {
    color: var(--color-accent);
}
.story-hero__subtitle {
    font-size: 1.8rem;
    color: var(--color-gray);
    max-width: 55ch;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .story-hero__visual {
        width: 300px;
        height: 300px;
        margin-bottom: -100px;
    }
    .story-hero__content {
        padding: 20px;
        padding-top: 120px;
    }
}

.manifesto {
    padding: 12rem 0;
}
.manifesto__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 8rem auto;
}
.manifesto__layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 8rem;
    min-height: 400px;
}
.manifesto__nav {
    border-right: 1px solid rgba(0,0,0,0.1);
    padding-right: 4rem;
}
.manifesto__nav-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.manifesto__nav-item {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--color-gray);
    cursor: pointer;
    position: relative;
    padding: 1rem;
    transition: color 0.4s ease;
}
.manifesto__nav-item::after {
    content: '';
    position: absolute;
    top: 0;
    right: -4rem;
    width: 0;
    height: 100%;
    background-color: var(--color-accent);
    transition: width 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.manifesto__nav-item.is-active {
    color: var(--color-dark);
}
.manifesto__nav-item.is-active::after {
    width: 4px;
}
.manifesto__display-pane {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.manifesto__bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    transform: scale(1.1);
    transition: background-image 0.6s ease, opacity 0.6s ease, transform 0.6s ease;
}
.manifesto__display-pane.is-changing .manifesto__bg-image {
    opacity: 0;
    transform: scale(1);
}
.manifesto__text-content {
    position: relative;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
}
.manifesto__display-pane.is-visible .manifesto__text-content {
    opacity: 1;
    transform: translateY(0);
}
.manifesto__display-title {
    font-size: clamp(4rem, 8vw, 9rem);
    text-transform: uppercase;
    line-height: 1;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-size: cover;
    background-position: center;
    margin-bottom: 2rem;
    transition: background-image 0.6s ease;
}
.manifesto__display-text {
    font-size: 1.8rem;
    max-width: 55ch;
    color: var(--color-gray);
}
.manifesto__display-text::after {
    content: '█';
    animation: blink 1s step-end infinite;
}
@keyframes blink {
    50% { opacity: 0; }
}

@media (max-width: 992px) {
    .manifesto__layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .manifesto__nav {
        border-right: none;
        padding-right: 0;
        border-bottom: 1px solid rgba(0,0,0,0.1);
        padding-bottom: 2rem;
    }
    .manifesto__nav-list {
        flex-direction: column;
        justify-content: space-around;
    }
    .manifesto__nav-item {
        font-size: 1.8rem;
    }
    .manifesto__nav-item::after {
        right: 0;
        top: auto;
        bottom: -2rem;
        width: 100%;
        height: 0;
    }
    .manifesto__nav-item.is-active::after {
        height: 4px;
        width: 100%;
    }
}

.team {
    padding: 12rem 0;
    background-color: #fff;
    overflow: hidden;
}
.team__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    align-items: center;
}
.team__details-pane {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.team__header {
    margin-bottom: 4rem;
}
.team__current-member {
    flex-grow: 1;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.team__current-member-info {
    position: absolute;
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.team__current-member-info.is-exiting {
    opacity: 0;
    transform: translateY(20px);
}
.team__member-name {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4.8rem);
    line-height: 1.1;
}
.team__member-title {
    font-size: 1.8rem;
    color: var(--color-gray);
}
.team__nav {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}
.team__nav-btn {
    width: 60px;
    height: 60px;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 50%;
    color: var(--color-dark);
    transition: all 0.3s ease;
}
.team__nav-btn:hover {
    background-color: var(--color-dark);
    color: var(--color-light);
    border-color: var(--color-dark);
}
.team__stack-pane {
    min-height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.team__stack {
    position: relative;
    width: 320px;
    height: 400px;
}
.team__polaroid {
    position: absolute;
    inset: 0;
    border-radius: 8px;
    overflow: hidden;
    background: white;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s ease;
    will-change: transform, opacity;
}
.team__polaroid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.team__polaroid:nth-child(1) { transform: rotate(-4deg); }
.team__polaroid:nth-child(2) { transform: rotate(2deg); }
.team__polaroid:nth-child(3) { transform: rotate(5deg); }
.team__polaroid:nth-child(4) { transform: rotate(-2deg); }
.team__polaroid:nth-child(5) { transform: rotate(3deg); }
.team__polaroid.is-exiting-prev {
    transform: translateX(-150%) rotate(-15deg);
    opacity: 0;
}
.team__polaroid.is-exiting-next {
    transform: translateX(150%) rotate(15deg);
    opacity: 0;
}
.team__polaroid--join {
    background: var(--color-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.team__join-content a {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--color-accent);
    text-decoration: underline;
}

@media (max-width: 992px) {
    .team__layout {
        grid-template-columns: 1fr;
    }
    .team__details-pane {
        text-align: center;
        align-items: center;
    }
}

.journey {
    padding: 12rem 0;
    background-color: var(--color-dark);
    color: var(--color-light);
}
.journey__header {
    text-align: center;
    margin-bottom: 6rem;
}
.journey__title {
    color: var(--color-light);
}
.journey__interactive-area {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    aspect-ratio: 1/1;
}
.journey__orbits-bg {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}
.journey__orbits-bg svg circle {
    fill: none;
    stroke: var(--color-light);
    stroke-width: 1px;
    stroke-dasharray: 5 5;
}
.journey__content-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    border-radius: 50%;
    background-color: var(--color-accent);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem;
    overflow: hidden;
}
.journey__hub-content-wrapper {
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.journey__hub-content-wrapper.is-exiting {
    opacity: 0;
    transform: translateY(15px);
}
.journey__hub-title {
    font-family: var(--font-display);
    font-size: 2.8rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}
.journey__hub-text {
    color: rgba(10, 10, 10, 0.8);
    font-size: 1.6rem;
    line-height: 1.5;
}
.journey__nav-list {
    position: absolute;
    inset: 0;
    border-radius: 50%;
}
.journey__nav-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 70px;
    height: 70px;
    margin: -35px;
    cursor: pointer;
    transition: transform 0.4s ease;
}
.journey__nav-item span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--color-dark);
    border: 2px solid var(--color-gray);
    font-size: 1.8rem;
    transition: all 0.4s ease;
}
.journey__nav-item:hover span {
    border-color: var(--color-light);
    transform: scale(1.1);
}
.journey__nav-item--active span {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-dark);
    transform: scale(1.2);
}
.journey__nav-item:nth-child(1) { transform: rotate(45deg) translateY(-250px) rotate(-45deg); }
.journey__nav-item:nth-child(2) { transform: rotate(135deg) translateY(-250px) rotate(-135deg); }
.journey__nav-item:nth-child(3) { transform: rotate(225deg) translateY(-250px) rotate(-225deg); }
.journey__nav-item:nth-child(4) { transform: rotate(315deg) translateY(-250px) rotate(-315deg); }

.journey__milestones-data {
    display: none;
}

@media (max-width: 768px) {
    .journey__interactive-area {
        display: flex;
        flex-direction: column;
        aspect-ratio: auto;
        gap: 4rem;
    }
    .journey__orbits-bg {
        display: none;
    }
    .journey__content-hub {
        position: static;
        transform: none;
        width: 100%;
        height: auto;
        min-height: 250px;
        border-radius: 8px;
    }
    .journey__nav {
        position: static;
    }
    .journey__nav-list {
        position: static;
        display: flex;
        justify-content: center;
        gap: 1.5rem;
    }
    .journey__nav-item,
    .journey__nav-item:nth-child(n) {
        position: static;
        transform: none;
        margin: 0;
        width: 60px;
        height: 60px;
    }
}

@media (max-width: 992px) {
    .manifesto__grid {
        grid-template-columns: 1fr;
    }

    .team__stack
    {
        width: 280px;
    }
}

.shop-hero {
    padding: 10rem 0;
    text-align: center;
    background-color: var(--color-dark);
    color: var(--color-light);
}
.shop-hero__title {
    font-size: clamp(4rem, 6vw, 7rem);
    text-transform: uppercase;
    line-height: 1.1;
}
.shop-hero__subtitle {
    font-size: 1.8rem;
    color: var(--color-gray);
    max-width: 60ch;
    margin: 1rem auto 0 auto;
}

.shop-main {
    padding: 10rem 0;
}
.shop-main__controls {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 6rem;
}
.shop-main__filter-btn {
    font-family: var(--font-display);
    font-size: 1.8rem;
    padding: 1rem 2.5rem;
    border-radius: 5rem;
    border: 2px solid rgba(0,0,0,0.1);
    color: var(--color-gray);
    transition: all 0.3s ease;
}
.shop-main__filter-btn:hover {
    border-color: var(--color-dark);
    color: var(--color-dark);
}
.shop-main__filter-btn.is-active {
    background-color: var(--color-dark);
    border-color: var(--color-dark);
    color: var(--color-light);
}

.shop-main__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
}
.product-card {
    transition: opacity 0.4s ease, transform 0.4s ease, max-height 0.6s ease, padding 0.6s ease, margin 0.6s ease;
    overflow: hidden;
}
.product-card.is-hidden {
    opacity: 0;
    transform: scale(0.8);
    max-height: 0;
    padding: 0;
    margin: 0;
}

.product-card__visuals {
    position: relative;
    aspect-ratio: 1/1.2;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    background-color: var(--color-light);
}
.product-card__image-wrapper {
    position: absolute;
    inset: 0;
}
.product-card__image-wrapper--hover {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
    transition: clip-path 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}
.product-card:hover .product-card__image-wrapper--hover {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.product-card__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.product-card:hover .product-card__image-wrapper:not(.product-card__image-wrapper--hover) img {
    transform: scale(1.05);
}
.product-card__view-btn {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    padding: 1.2rem 2.5rem;
    border-radius: 5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(5px);
    color: var(--color-dark);
    font-size: 1.4rem;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
}
.product-card:hover .product-card__view-btn {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}
.product-card__info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
}
.product-card__info p {
    color: var(--color-gray);
}
.product-card__price {
    font-size: 1.8rem;
    color: var(--color-dark);
}

@media (max-width: 768px) {
    .shop-main__grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 2rem;
    }
}

.popup-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(26, 26, 26, 0.7);
    backdrop-filter: blur(5px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0s 0.5s;
}
.popup-overlay.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0s 0s;
}

.popup {
    position: fixed;
    inset: 0;
    z-index: 2001;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--container-padding);
    pointer-events: none; 
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0s 0.5s;
}
.popup.is-open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0s 0s;
}

.popup__container {
    position: relative;
    width: 100%;
    max-width: 900px;
    background-color: var(--color-light);
    border-radius: 8px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: auto;
}
.popup.is-open .popup__container {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
}
.popup__close-btn {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 3.5rem;
    color: var(--color-gray);
    line-height: 1;
    z-index: 3;
    transition: transform 0.3s ease;
}
.popup__close-btn:hover {
    transform: rotate(90deg);
}
.popup__bg-index {
    position: absolute;
    top: -5%;
    left: -5%;
    font-family: var(--font-display);
    font-size: 25rem;
    color: rgba(0,0,0,0.03);
    z-index: 0;
    line-height: 1;
}
.popup__layout {
    display: grid;
    grid-template-columns: 4fr 5fr;
    position: relative;
    z-index: 1;
}
.popup__visuals {
    transform: translateX(-100%);
    transition: transform 0.8s cubic-bezier(0.76, 0, 0.24, 1);
    transition-delay: 0.2s;
}
.popup.is-open .popup__visuals {
    transform: translateX(0);
}
.popup__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px 0 0 8px;
}
.popup__details {
    padding: 4rem 5rem;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transition: opacity 0.5s ease;
    transition-delay: 0.5s;
}
.popup.is-open .popup__details {
    opacity: 1;
}
.popup__title {
    font-family: var(--font-display);
    font-size: 3.6rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}
.popup__price {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
    color: var(--color-accent);
}
.popup__description {
    margin-bottom: 3rem;
}
.popup__description h3 {
    font-size: 1.4rem;
    text-transform: uppercase;
    color: var(--color-gray);
    margin-bottom: 0.5rem;
}
.popup__description p {
    font-size: 1.6rem;
}
.popup__specs {
    display: flex;
    gap: 3rem;
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.popup__spec-item h4 {
    font-size: 1.4rem;
    color: var(--color-gray);
}
.popup__add-to-cart-btn {
    margin-top: 3rem;
    width: 100%;
}

.cart-page {
    padding: 10rem 0;
}
.cart-page__title {
    text-align: center;
    margin-bottom: 8rem;
    font-size: clamp(4rem, 6vw, 7rem);
}
.cart-page__layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 6rem;
}
.cart-page__items p {
    font-size: 1.8rem;
    color: var(--color-gray);
}
.cart-page__checkout {
    background-color: #fff;
    padding: 3rem;
    border-radius: 8px;
}
.cart-page__checkout-title {
    font-family: var(--font-display);
    font-size: 2.4rem;
    margin-bottom: 1rem;
}
.cart-page__checkout-text {
    color: var(--color-gray);
    margin-bottom: 3rem;
}
.cart-page__contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 2rem;
    margin-bottom: 3rem;
}
.cart-page__contact-link {
    font-size: 1.6rem;
}
.cart-page__contact-link strong {
    color: var(--color-dark);
}
.cart-page__continue-btn {
    display: block;
    text-align: center;
    text-decoration: underline;
}

@media (max-width: 992px) {
    .popup__layout { grid-template-columns: 1fr; }
    .popup__visuals { aspect-ratio: 16/9; }
    .popup__image { border-radius: 8px 8px 0 0; }
    .cart-page__layout { grid-template-columns: 1fr; }
    .popup{overflow: scroll;}
}

.header__action-btn.animate-pop .header__cart-count {
    animation: pop-animation 0.3s ease-out;
}
@keyframes pop-animation {
    0% { transform: scale(1); }
    50% { transform: scale(1.5); }
    100% { transform: scale(1); }
}

.cart-page__items-wrapper--empty {
    font-size: 1.8rem;
    color: var(--color-gray);
}
.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 2rem;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.cart-item__image {
    width: 100px;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
}
.cart-item__details h3 {
    font-family: var(--font-display);
    font-size: 2rem;
}
.cart-item__details p {
    color: var(--color-gray);
}
.cart-item__controls {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1.5rem;
}
.cart-item__quantity {
    display: flex;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 4px;
}
.cart-item__quantity-btn {
    width: 30px;
    height: 30px;
    font-size: 2rem;
}
.cart-item__quantity-value {
    width: 40px;
    text-align: center;
    font-size: 1.6rem;
}
.cart-item__remove-btn {
    font-size: 1.4rem;
    color: var(--color-gray);
    text-decoration: underline;
}
.cart-page__summary, .cart-page__total {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 0;
}
.cart-page__summary {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.cart-page__summary p, .cart-page__total p {
    display: flex;
    justify-content: space-between;
}
.cart-page__total {
    font-size: 1.8rem;
}
.cart-page__checkout-subtitle {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

@media(max-width: 480px)
{
    .cart-item
    {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.quiz-container {
    height: 100vh;
    background-color: var(--color-dark);
    color: var(--color-light);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.quiz__progress {
    padding: 0 var(--container-padding);
    background-color: rgba(255,255,255,0.05);
    height: 10px;
}
.quiz__progress-bar {
    width: 0%;
    height: 100%;
    background-color: var(--color-accent);
    transition: width 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}
.quiz__step-container {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.quiz__step {
    text-align: center;
    padding: 4rem var(--container-padding);
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.quiz__step.is-exiting {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}
.quiz__question-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4vw, 4rem);
    margin-bottom: 4rem;
}
.quiz__choices {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
.quiz__choice-card {
    border: 2px solid var(--color-gray);
    border-radius: 8px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: rgba(255,255,255,0.05);
}
.quiz__choice-card:hover {
    border-color: var(--color-light);
    transform: translateY(-5px);
}
.quiz__choice-card.is-selected {
    border-color: var(--color-accent);
    background-color: var(--color-accent);
    color: var(--color-dark);
}
.quiz__choice-card svg {
    height: 60px;
    margin-bottom: 1rem;
}
.quiz__choice-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 1rem;
}
.quiz__choice-card h3 {
    font-size: 1.8rem;
}
.quiz__choice-card--color {
    height: 80px;
    width: 80px;
    border: none;
    padding: 0;
    transition: transform 0.3s ease;
}
.quiz__choice-card--color.is-selected {
    transform: scale(1.1);
    box-shadow: 0 0 0 4px var(--color-accent);
}
.quiz__choice-card--color:hover {
    transform: scale(1.05) translateY(0);
}

.quiz__calculating {
    text-align: center;
}
.quiz__calculating-text {
    font-size: 2.4rem;
    font-family: var(--font-display);
    animation: pulse 1.5s infinite ease-in-out;
}
@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.quiz-results {
    display: none;
    padding: 10rem 0;
}
.quiz-results__header {
    text-align: center;
    margin-bottom: 6rem;
}
.quiz-results__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 6rem;
}
.quiz-results .product-card {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.quiz-results .product-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.quiz-results__shop-all-btn {
    display: table;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .quiz__choices { grid-template-columns: 1fr; overflow: scroll;}
}

.testimonials {
    position: relative;
    padding: 12rem 0;
    background-color: var(--color-dark);
    color: var(--color-light);
    overflow: hidden;
}
.testimonials__stream-wrapper {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    z-index: 0;
    pointer-events: none;
    transform: rotate(-10deg) scale(1.2);
}
.testimonials__stream-row {
    display: flex;
    width: max-content;
    flex-shrink: 0;
    animation: scroll-stream 60s linear infinite;
}
.testimonials__stream-row--reverse {
    animation-direction: reverse;
}
.testimonials__stream-text {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 6rem);
    text-transform: uppercase;
    white-space: nowrap;
    padding: 0 2rem;
    opacity: 0.1;
}
@keyframes scroll-stream {
    from { transform: translateX(0%); }
    to { transform: translateX(-50%); }
}
.testimonials__container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
}
.testimonials__focus-card {
    max-width: 700px;
    padding: 4rem;
    border-radius: 8px;
    background: rgba(26, 26, 26, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.testimonials__quote-wrapper {
    text-align: center;
    transition: opacity 0.4s ease, transform 0.4s ease;
    min-height: 150px;
}
.testimonials__quote-wrapper.is-changing {
    opacity: 0;
    transform: translateY(10px);
}
.testimonials__quote {
    font-size: 2.4rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}
.testimonials__author {
    font-style: normal;
    font-size: 1.6rem;
    color: var(--color-accent);
}
.testimonials__nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.testimonials__nav-btn {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--color-light);
    transition: all 0.3s ease;
}
.testimonials__nav-btn:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

.legal-hero {
    padding: 8rem 0;
    text-align: center;
    background-color: var(--color-light);
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.legal-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(4rem, 6vw, 6rem);
    text-transform: uppercase;
}
.legal-content {
    padding: 8rem 0;
}
.legal-content .container {
    max-width: 800px;
}
.legal-content h2 {
    font-family: var(--font-display);
    font-size: 2.8rem;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}
.legal-content p,
.legal-content li {
    font-size: 1.6rem;
    line-height: 1.8;
    color: var(--color-gray);
    margin-bottom: 1.5rem;
}
.legal-content ul {
    list-style: disc;
    padding-left: 2rem;
}
.legal-content a {
    color: var(--color-accent);
    text-decoration: underline;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    border: 0;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}


.process {
    padding: 12rem 0;
    background-color: var(--color-light);
}
.process__layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 8rem;
    align-items: center;
}
.process__visual-pane {
    position: relative;
    aspect-ratio: 1/1;
    border-radius: 8px;
    overflow: hidden;
}
.process__visual-wrapper {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.process__visual-wrapper.is-active {
    opacity: 1;
    transform: scale(1);
}
.process__visual-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.process__content-pane {
    overflow: hidden;
}
.process__header {
    margin-bottom: 4rem;
}
.process__steps-container {
    display: flex;
    gap: 2rem;
    align-items: stretch;
    flex-direction: column;
}
.process__step {
    flex-shrink: 0;
    width: calc(33.333% - 1.333rem);
    padding: 2rem;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.76, 0, 0.24, 1);
    opacity: 0.5;
    width: 100%;
}
.process__step.is-active {
    width: 100%;
    background-color: var(--color-dark);
    color: var(--color-light);
    border-color: var(--color-dark);
    opacity: 1;
}
.process__step.is-active .process__step-text {
    max-height: 200px;
    opacity: 1;
    transition: max-height 0.5s ease 0.3s, opacity 0.5s ease 0.3s;
}
.process__step.is-active .process__step-icon {
    color: var(--color-accent);
}
.process__step.is-active .process__step-text {
    color: var(--color-gray);
}
.process__step-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.process__step-icon {
    color: var(--color-dark);
    transition: color 0.4s ease;
}
.process__step-title {
    font-family: var(--font-display);
    font-size: 2rem;
}
.process__step-text {
    color: var(--color-gray);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.3s ease;
}

@media (max-width: 992px) {
    .process__layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .process__visual-pane {
        aspect-ratio: 16/9;
    }
}
@media (max-width: 768px) {
    .process__steps-container {
        flex-direction: column;
    }
    .process__step,
    .process__step.is-active {
        width: 100%;
    }
}

.studio {
    padding: 12rem 0;
    background-color: var(--color-dark);
    color: var(--color-light);
    position: relative;
}
.studio__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    position: relative;
}
.studio__content-pane {
    position: relative;
}
.studio__sticky-content {
    position: sticky;
    top: 15rem; /* Отступ от верха, чтобы текст не прилипал к шапке */
    height: fit-content;
}
.studio__section-index {
    font-family: var(--font-display);
    font-size: 10rem;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: -5rem;
    left: 0;
    line-height: 1;
    z-index: -1;
}
.studio__title {
    color: var(--color-light);
    margin-bottom: 3rem;
}
.studio__description {
    font-size: 1.8rem;
    line-height: 1.7;
    color: var(--color-gray);
    max-width: 45ch;
    margin-bottom: 2rem;
}
.studio__gallery-pane {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 10rem 0; /* Добавляем отступы, чтобы был запас для скролла */
}
.studio__image-wrapper {
    border-radius: 8px;
    overflow: hidden;
    will-change: transform;
}
.studio__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.studio__image-wrapper--1 {
    width: 80%;
    align-self: flex-start;
}
.studio__image-wrapper--2 {
    width: 100%;
}
.studio__image-wrapper--3 {
    width: 70%;
    align-self: flex-end;
}

@media (max-width: 992px) {
    .studio__layout {
        grid-template-columns: 1fr;
    }
    .studio__sticky-content {
        position: static;
        text-align: center;
        margin-bottom: 6rem;
    }
    .studio__description {
        margin: 0 auto 2rem auto;
    }
    .studio__gallery-pane {
        padding: 0;
    }
}

.vision {
    padding: 12rem 0;
    background-color: var(--color-dark);
    color: var(--color-light);
}
.vision__container {
    max-width: 800px;
    text-align: center;
}
.vision__title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4.8rem);
    color: var(--color-light);
    margin-bottom: 2rem;
}
.vision__text {
    font-size: 1.8rem;
    color: var(--color-gray);
    margin-bottom: 4rem;
}
.vision__button {
    background-color: var(--color-light);
    color: var(--color-dark);
    border-color: var(--color-light);
}
.vision__button:hover {
    background-color: transparent;
    color: var(--color-light);
}

@media (max-width: 992px) {
    .process__grid {
        grid-template-columns: 1fr;
    }
    .studio__container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    .studio__visual {
        order: -1;
    }
    .featured-products__info
    {
        flex-direction: column;
    }
}

.process
{
    overflow: hidden;
}