:root {
    --color-dark-primary: #121217;
    --color-dark-secondary: #1a1a23;
    --color-accent-gold: #e9c46a;
    --color-accent-gold-darker: #d4b05a;
    --color-light-primary: #f4f4f9;
    --color-light-secondary: #d1d1d6;
    --font-primary: 'ShareTechMono', sans-serif;
    --font-secondary: 'ShareTechMono', sans-serif;
    --header-height: 8rem;
}

@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 {
    background-color: var(--color-dark-primary);
    color: var(--color-light-primary);
    font-family: var(--font-secondary);
    font-size: 1.6rem;
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    color: var(--color-light-primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 12rem 0;
/*    overflow: hidden;*/
    position: relative;
}

.button {
    display: inline-block;
    padding: 1.4rem 3.2rem;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    border: 2px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.button--primary {
    background-color: var(--color-accent-gold);
    color: var(--color-dark-primary);
    border-color: var(--color-accent-gold);
}

.button--primary:hover {
    background-color: var(--color-accent-gold-darker);
    border-color: var(--color-accent-gold-darker);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.button--secondary {
    background-color: transparent;
    color: var(--color-accent-gold);
    border-color: var(--color-accent-gold);
}

.button--secondary:hover {
    background-color: var(--color-accent-gold);
    color: var(--color-dark-primary);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 5%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(18, 18, 23, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.header--scrolled {
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.header__logo {
    height: 3.5rem;
    width: auto;
    color: var(--color-light-primary);
    transition: color 0.3s ease;
}

.header__logo:hover {
    color: var(--color-accent-gold);
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.nav__link {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent-gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease-out;
}

.nav__link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header__burger-button {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 3rem;
    height: 3rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.header__burger-button span {
    width: 3rem;
    height: 0.25rem;
    background-color: var(--color-light-primary);
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}


.about-preview {
    background-color: var(--color-dark-secondary);
}

.about-preview__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8rem;
    align-items: center;
}

.about-preview__image-wrapper {
    position: relative;
    height: 100%;
}

.about-preview__image-wrapper::before {
    content: '';
    position: absolute;
    top: -3rem;
    left: -3rem;
    width: 100%;
    height: 100%;
    border: 5px solid var(--color-accent-gold);
    z-index: 1;
}

.about-preview__image {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.about-preview__content {
    max-width: 500px;
}

.about-preview__tagline {
    display: block;
    color: var(--color-accent-gold);
    font-family: var(--font-primary);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 1.5px;
}

.about-preview__title {
    font-size: 4.8rem;
    margin-bottom: 2.5rem;
}

.about-preview__text {
    color: var(--color-light-secondary);
    margin-bottom: 3.5rem;
}

.materials-reel {
    padding: 12rem 0;
    overflow: hidden;
    background-color: var(--color-dark-secondary);
}

.materials-reel__header {
    text-align: center;
    margin-bottom: 8rem;
}

.materials-reel__title {
    font-size: 4.8rem;
    margin-bottom: 2rem;
}

.materials-reel__subtitle {
    font-size: 1.8rem;
    color: var(--color-light-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.materials-reel__wrapper {
    display: flex;
    width: max-content;
    will-change: transform;
}

.materials-reel__track {
    display: flex;
    animation: scroll-left 40s linear infinite;
    gap: 4rem;
}

.materials-reel__wrapper:hover .materials-reel__track {
    animation-play-state: paused;
}

@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.materials-reel__item {
    flex-shrink: 0;
    width: 40rem;
    padding: 3rem;
    border: 2px solid rgba(233, 196, 106, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 3rem;
    background-color: var(--color-dark-primary);
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    cursor: pointer;
}

.materials-reel__item:hover {
    transform: scale(1.05);
    border-color: var(--color-accent-gold);
    background-color: var(--color-dark-secondary);
}

.materials-reel__item-index {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-accent-gold);
}

.materials-reel__item-title {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--color-light-primary);
}

.materials-reel__item-origin {
    color: var(--color-light-secondary);
}

.materials-reel__item-preview {
    position: fixed;
    top: 0;
    left: 0;
    width: 35rem;
    height: 45rem;
    object-fit: cover;
    z-index: 1001;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.8);
    transition: opacity 0.4s ease, transform 0.4s ease;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 4px solid var(--color-light-primary);
    display: none;
}

@media (pointer: fine) {
    .materials-reel__item-preview {
        display: block;
    }
}

.materials-reel__item-preview.is-visible {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

@media (max-width: 768px) {
    .materials-reel__track {
        animation: none;
        flex-direction: column;
        width: 100%;
        padding: 0 5%;
    }
    .materials-reel__wrapper {
        width: 100%;
    }
    .materials-reel__item {
        width: 100%;
    }
}

.materials-slider__fabric-origin {
    font-size: 1.6rem;
    color: var(--color-accent-gold);
}

.process-dial { background-color: var(--color-dark-secondary); }
.process-dial__header { text-align: center; margin-bottom: 8rem; }
.process-dial__main-title { font-size: 4.8rem; margin-bottom: 2rem; }
.process-dial__subtitle { font-size: 1.8rem; color: var(--color-light-secondary); max-width: 600px; margin: 0 auto; }
.process-dial__layout { display: grid; grid-template-columns: 40% 60%; align-items: center; min-height: 60vh; gap: 5%; }
.process-dial__nav-wheel { position: relative; width: 40rem; height: 40rem; margin: 0 auto; }
.process-dial__wheel-bg { width: 100%; height: 100%; border: 1px solid rgba(233, 196, 106, 0.1); border-radius: 50%; position: relative; background-color: transparent; }
.process-dial__wheel-bg::before { content: ''; position: absolute; top: 50%; left: 50%; width: 95%; height: 95%; background-color: var(--color-dark-secondary); border-radius: 50%; transform: translate(-50%, -50%); z-index: 1; }
.process-dial__wheel-bg::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; border-radius: 50%; background-image: repeating-conic-gradient(from 0deg, rgba(233, 196, 106, 0.5) 0 0.5deg, transparent 0.5deg 30deg), repeating-conic-gradient(from 0deg, rgba(233, 196, 106, 0.2) 0 0.2deg, transparent 0.2deg 6deg); z-index: 0; }
.process-dial__wheel-mechanism { position: absolute; top: 50%; left: 50%; width: 100%; height: 100%; transform: translate(-50%, -50%); --indicator-rotation: -45deg; z-index: 2; }
.process-dial__wheel-indicator, .process-dial__wheel-hand { position: absolute; bottom: 50%; left: 50%; transform-origin: bottom center; }
.process-dial__wheel-indicator { width: 2px; height: 50%; background-color: var(--color-accent-gold); transform: translateX(-50%) rotate(var(--indicator-rotation)); transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1); z-index: 10; }
.process-dial__wheel-hand { width: 1px; background-color: rgba(233, 196, 106, 0.4); transform: translateX(-50%) rotate(0deg); }
.process-dial__wheel-hand--fast { height: 45%; animation: rotate 20s linear infinite; }
.process-dial__wheel-hand--medium { height: 35%; animation: rotate 60s linear infinite reverse; }
.process-dial__wheel-hand--slow { height: 25%; animation: rotate 120s linear infinite; }
.process-dial__wheel-hub { position: absolute; top: 50%; left: 50%; width: 1.5rem; height: 1.5rem; background-color: var(--color-dark-secondary); border: 2px solid var(--color-accent-gold); border-radius: 50%; transform: translate(-50%, -50%); z-index: 11; }
@keyframes rotate { from { transform: translateX(-50%) rotate(0deg); } to { transform: translateX(-50%) rotate(360deg); } }
.process-dial__steps-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 5; }
.process-dial__step { position: absolute; background: none; border: none; color: var(--color-light-secondary); cursor: pointer; text-align: left; display: flex; flex-direction: column; width: 15rem; transition: color 0.3s ease; }
.process-dial__step.is-active { color: var(--color-light-primary); }
.process-dial__step:hover { color: var(--color-accent-gold); }
.process-dial__step--1 { top: 5%; left: 5%; }
.process-dial__step--2 { top: 5%; right: 5%; text-align: right; }
.process-dial__step--3 { bottom: 5%; right: 5%; text-align: right; }
.process-dial__step--4 { bottom: 5%; left: 5%; }
.process-dial__step-number { font-family: var(--font-primary); font-size: 1.8rem; font-weight: 600; color: var(--color-accent-gold); }
.process-dial__step-title { font-size: 2.2rem; font-family: var(--font-primary); font-weight: 500; }
.process-dial__content-pane { position: relative; height: 45rem; display: flex; flex-direction: column; justify-content: flex-end; padding: 4rem; border-radius: 8px; overflow: hidden; }
.process-dial__content-bg-num { position: absolute; top: -5rem; right: 0; font-size: 25rem; font-family: var(--font-primary); font-weight: 700; color: rgba(244, 244, 249, 0.04); z-index: 1; line-height: 1; }
.process-dial__image-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; }
.process-dial__image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.8s ease;  filter: brightness(0.5);}
.process-dial__image.is-active { opacity: 1; }
.process-dial__text-wrapper { position: relative; z-index: 3; height: 15rem; }
.process-dial__text { position: absolute; bottom: 0; left: 0; opacity: 0; transition: opacity 0.8s ease, transform 0.8s ease; transform: translateY(20px); }
.process-dial__text.is-active { opacity: 1; transform: translateY(0); }
.process-dial__text-title { font-size: 3.2rem; margin-bottom: 1.5rem; }
.process-dial__text-body { color: var(--color-light-secondary); max-width: 450px; }

@media (max-width: 992px) {
    .process-dial__layout { grid-template-columns: 1fr; gap: 6rem; }
    .process-dial__nav-wheel { width: 35rem; height: 35rem; }
    .process-dial__content-pane { height: 40rem; }
}

@media (max-width: 768px) {
    .process-dial__layout { display: flex; flex-direction: column; gap: 5rem; }
    .process-dial__nav-wheel { width: 90vw; height: 90vw; max-width: 32rem; max-height: 32rem; }
    .process-dial__step { width: 12rem; }
    .process-dial__step-title { font-size: 1.8rem; }
    .process-dial__content-pane { height: auto; padding: 0; }
    .process-dial__content-bg-num { display: none; }
    .process-dial__image-wrapper { position: static; height: 30rem; border-radius: 8px; overflow: hidden; }
    .process-dial__image { position: relative; }
    .process-dial__text-wrapper { height: auto; margin-top: 3rem; text-align: center; }
    .process-dial__text { position: static; transform: none; display: none; }
    .process-dial__text.is-active { display: block; opacity: 1; }
    .process-dial__text-title { font-size: 2.8rem; }
    .process-dial__text-body { margin: 0 auto; }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-accordion__title-main {
    font-size: 4.8rem;
    text-align: center;
    margin-bottom: 6rem;
}

.faq-accordion__item {
    border-bottom: 1px solid rgba(233, 196, 106, 0.2);
}

.faq-accordion__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.5rem 0;
    cursor: pointer;
    width: 100%;
}

.faq-accordion__title {
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--color-light-primary);
}

.faq-accordion__icon {
    width: 2rem;
    height: 2rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 2rem;
}

.faq-accordion__icon line {
    stroke: var(--color-accent-gold);
    stroke-width: 2;
    transition: all 0.3s ease;
}

.faq-accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.faq-accordion__content p {
    padding-bottom: 2.5rem;
    color: var(--color-light-secondary);
}

.faq-accordion__item--active .faq-accordion__icon {
    transform: rotate(180deg);
}

.faq-accordion__item--active .faq-accordion__icon .faq-accordion__icon-vertical {
    transform: scaleY(0);
}

.cta-form {
    background-color: var(--color-dark-secondary);
}

.cta-form__container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 8rem;
    align-items: center;
}

.cta-form__content {
    max-width: 450px;
}

.cta-form__title {
    font-size: 4.8rem;
    margin-bottom: 2rem;
}

.cta-form__text {
    color: var(--color-light-secondary);
    margin-bottom: 3rem;
}

.cta-form__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.form-group {
    position: relative;
}

.form-group--full-width {
    grid-column: 1 / -1;
}

.form-group__input {
    width: 100%;
    padding: 1.5rem 2rem;
    background-color: var(--color-dark-primary);
    border: 2px solid transparent;
    border-radius: 5px;
    color: var(--color-light-primary);
    font-size: 1.6rem;
    font-family: var(--font-secondary);
    transition: border-color 0.3s ease;
}

.form-group__input:focus {
    outline: none;
    border-color: var(--color-accent-gold);
}

.form-group__label {
    position: absolute;
    top: 1.6rem;
    left: 2rem;
    color: var(--color-light-secondary);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group__input:focus ~ .form-group__label,
.form-group__input:not(:placeholder-shown) ~ .form-group__label {
    top: -1rem;
    left: 1.5rem;
    font-size: 1.2rem;
    color: var(--color-accent-gold);
    background-color: var(--color-dark-secondary);
    padding: 0 0.5rem;
}

.form-group__error-message {
    color: #ff6b6b;
    font-size: 1.3rem;
    margin-top: 0.5rem;
    display: none;
}

.form-group__input--error {
    border-color: #ff6b6b;
}

.form-group__input--error ~ .form-group__error-message {
    display: block;
}



@media (max-width: 1024px) {
    .header__nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--color-dark-secondary);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
    }

    .header__nav--open {
        display: flex;
        transform: translateX(0);
    }
    
    .nav__list {
        flex-direction: column;
        gap: 5rem;
    }

    .nav__link {
        font-size: 2.4rem;
    }

    .header__cta-button {
        display: none;
    }

    .header__burger-button {
        display: flex;
    }

    .header__burger-button--open span:nth-child(1) {
        transform: rotate(45deg) translate(-0.5rem, -0.5rem);
    }
    .header__burger-button--open span:nth-child(2) {
        opacity: 0;
    }
    .header__burger-button--open span:nth-child(3) {
        transform: rotate(-45deg) translate(0.5rem, -0.5rem);
    }
    
    .about-preview__grid, .cta-form__container {
        grid-template-columns: 1fr;
        gap: 6rem;
    }

    .about-preview__image-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .process-tabs__container {
        flex-direction: column;
        gap: 4rem;
    }

    .process-tabs__nav {
        flex-direction: row;
        width: 100%;
        overflow-x: auto;
    }
    .process-tabs__nav-button {
        flex-shrink: 0;
    }

    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html {
        font-size: 58%;
    }
    
    .section {
        padding: 8rem 0;
    }

    .cta-form__form {
        grid-template-columns: 1fr;
    }
}


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

.hero {
    height: 100vh;
    min-height: 700px;
    display: grid;
    grid-template-columns: 45% 55%;
    position: relative;
    overflow: hidden;
    background-color: var(--color-dark-primary);
}

.hero__text-pane {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 5%;
    z-index: 10;
}

.hero__background-accent {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    border: 1px solid rgba(233, 196, 106, 0.05);
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: -1;
}

.hero__content {
    max-width: 550px;
    width: 100%;
}

.hero__tagline {
    display: block;
    font-family: var(--font-primary);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--color-accent-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

.hero__title {
    font-size: clamp(4rem, 6.5vw, 7.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2.5rem;
    color: var(--color-light-primary);
}

.hero__title-line-wrapper {
    display: block;
    overflow: hidden;
}

.hero__title-line {
    display: block;
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

[data-aos="reveal-up"] .hero__title-line {
    transform: translateY(110%);
}

[data-aos="reveal-up"].aos-animate .hero__title-line {
    transform: translateY(0);
}

.hero__subtitle {
    font-size: clamp(1.8rem, 2.5vw, 2rem);
    color: var(--color-light-secondary);
    margin-bottom: 5rem;
    max-width: 500px;
    font-weight: 300;
    line-height: 1.8;
}

.hero__cta-group {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.hero__image-pane {
    position: relative;
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero__image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero__reveal-pane {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-accent-gold);
    z-index: 5;
    transform: translateX(-101%);
    animation: reveal 1.2s cubic-bezier(0.86, 0, 0.07, 1) forwards;
    animation-delay: 0.2s;
}

@keyframes reveal {
    0% {
        transform: translateX(-101%);
    }
    50% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(101%);
    }
}

@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
    }
    .hero__text-pane {
        grid-row: 1;
        grid-column: 1;
        text-align: center;
        padding: var(--header-height) 5% 5rem 5%;
        background: linear-gradient(rgba(18, 18, 23, 0.9), rgba(18, 18, 23, 1));
    }
    .hero__content {
        margin: auto;
    }
    .hero__cta-group {
        justify-content: center;
    }
    .hero__image-pane {
        grid-row: 1;
        grid-column: 1;
        clip-path: none;
        opacity: 0.2;
    }
    .hero__image {
        animation: kenBurns 25s ease-out infinite;
    }
    .hero__reveal-pane {
        display: none;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translate(-50%, -70%) rotate(45deg);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -40%) rotate(45deg);
        opacity: 0.5;
    }
}

.about-preview {
    scroll-margin-top: var(--header-height);
}


@media (max-width: 1024px) {
    .hero__content-wrapper::before {
        display: none;
    }
    .hero__content {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .hero__content {
        text-align: center;
        max-width: 100%;
    }
    .hero::after {
        background: rgba(18, 18, 23, 0.85);
    }
    .hero__cta-group {
        justify-content: center;
        flex-direction: column;
    }
    .hero__scroll-indicator {
        display: none;
    }
}

.about-preview {
    background-color: var(--color-dark-secondary);
    padding: 15rem 0;
    position: relative;
    scroll-margin-top: var(--header-height);
}

.about-preview__layout {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
    min-height: 70vh;
    position: relative;
}

.about-preview__visuals {
    grid-column: 1 / -1;
    grid-row: 1;
    position: relative;
    height: 100%;
}

.about-preview__background-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-primary);
    font-size: clamp(15rem, 30vw, 35rem);
    font-weight: 700;
    color: rgba(244, 244, 249, 0.03);
    z-index: 1;
    white-space: nowrap;
}

.about-preview__image-wrapper {
    position: absolute;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.about-preview__image-wrapper--primary {
    top: 0;
    left: 0;
    width: 45%;
    height: 60%;
    z-index: 2;
}

.about-preview__image-wrapper--secondary {
    bottom: 0;
    right: 5%;
    width: 30%;
    height: 45%;
    z-index: 3;
}

.about-preview__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
}

.about-preview__content-box {
    grid-column: 7 / 13;
    grid-row: 1;
    z-index: 4;
    background-color: var(--color-dark-primary);
    padding: 6rem;
    position: relative;
    border: 1px solid rgba(233, 196, 106, 0.1);
}

.about-preview__tagline {
    display: block;
    color: var(--color-accent-gold);
    font-family: var(--font-primary);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 1.5px;
}

.about-preview__title {
    font-size: 4.8rem;
    margin-bottom: 2.5rem;
}

.about-preview__text {
    color: var(--color-light-secondary);
    margin-bottom: 3.5rem;
}

@media (max-width: 992px) {
    .about-preview__layout {
        display: flex;
        flex-direction: column;
        gap: 4rem;
    }
    .about-preview__visuals {
        position: relative;
        height: 50vh;
        width: 100%;
        order: 2;
    }
    .about-preview__image-wrapper--primary {
        width: 60%;
        height: 70%;
    }
    .about-preview__image-wrapper--secondary {
        width: 40%;
        height: 50%;
        right: 0;
    }
    .about-preview__content-box {
        position: relative;
        width: 100%;
        padding: 4rem;
        order: 1;
    }
    .about-preview__background-text {
        display: none;
    }
}

@media (max-width: 768px) {
    .about-preview {
        padding: 8rem 0;
    }
    .about-preview__title {
        font-size: 3.6rem;
    }
    .about-preview__image-wrapper--primary {
        width: 80%;
        height: 60%;
        left: 5%;
    }
    .about-preview__image-wrapper--secondary {
        width: 50%;
        height: 45%;
        right: 5%;
        bottom: 10%;
    }
}

.materials-reel__item-preview {
    position: fixed;
    top: 0;
    left: 0;
    width: 35rem;
    height: 45rem;
    object-fit: cover;
    z-index: 1001;
    pointer-events: none;
    opacity: 0;
    transform: translate(0, 0) scale(0.8);
    transition: opacity 0.4s ease, transform 0.4s ease;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 4px solid var(--color-light-primary);
}


.materials-reel__item-header {
    display: flex;
    align-items: center;
    gap: 3rem;
    width: 100%;
}

.materials-reel__item-body {
    display: none;
}

.materials-reel__item-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-top: 2rem;
}

.materials-reel__item-chevron {
    display: none;
}

@media (max-width: 768px) {
    .materials-reel__track {
        animation: none;
        flex-direction: column;
        width: 100%;
        padding: 0 5%;
    }
    .materials-reel__wrapper {
        width: 100%;
    }
    .materials-reel__item {
        width: 100%;
        flex-direction: column;
        padding: 2rem;
        gap: 0;
    }
    .materials-reel__item-header {
        cursor: pointer;
    }
    .materials-reel__item-content {
        flex-grow: 1;
    }
    .materials-reel__item-body {
        display: block;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-out;
        width: 100%;
    }
    .materials-reel__item-chevron {
        display: block;
        width: 1.2rem;
        height: 1.2rem;
        border-right: 2px solid var(--color-accent-gold);
        border-bottom: 2px solid var(--color-accent-gold);
        transform: rotate(45deg);
        transition: transform 0.4s ease;
        margin-left: auto;
        flex-shrink: 0;
    }
    .materials-reel__item.is-open .materials-reel__item-chevron {
        transform: rotate(225deg);
    }
}

.faq-interactive { padding: 12rem 0; }
.faq-interactive__header { text-align: center; margin-bottom: 8rem; }
.faq-interactive__main-title { font-size: 4.8rem; }
.faq-interactive__layout { display: grid; grid-template-columns: 35% 1fr; gap: 8rem; align-items: flex-start; }
.faq-interactive__nav-list { display: flex; flex-direction: column; }
.faq-interactive__nav-button { background: none; border: none; font-family: var(--font-primary); font-size: 2.4rem; font-weight: 500; color: var(--color-light-secondary); padding: 2rem 0; text-align: left; cursor: pointer; border-bottom: 1px solid rgba(233, 196, 106, 0.1); width: 100%; transition: color 0.3s ease; position: relative; }
.faq-interactive__nav-button:hover { color: var(--color-light-primary); }
.faq-interactive__nav-button.is-active { color: var(--color-accent-gold); }
.faq-interactive__nav-button.is-active::before { color: var(--color-accent-gold); }
.faq-interactive__content-pane { position: relative; height: 50rem; border-radius: 8px; overflow: hidden; }
.faq-interactive__bg-num { position: absolute; bottom: -5rem; left: 0; font-size: 25rem; font-family: var(--font-primary); font-weight: 700; color: rgba(244, 244, 249, 0.04); z-index: 1; line-height: 1; }
.faq-interactive__image-wrapper { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; background-color: var(--color-dark-secondary); }
.faq-interactive__image-wrapper::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(18, 18, 23, 0.8) 0%, transparent 50%); }
.faq-interactive__image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 0.8s ease; }
.faq-interactive__image.is-active { opacity: 1; }
.faq-interactive__text-wrapper { position: absolute; bottom: 0; left: 0; width: 100%; padding: 4rem; z-index: 3; }
.faq-interactive__text { position: absolute; bottom: 4rem; left: 4rem; opacity: 0; transition: opacity 0.6s ease, transform 0.6s ease; transform: translateY(20px); }
.faq-interactive__text.is-active { opacity: 1; transform: translateY(0); }
.faq-interactive__text-title { font-size: 3.2rem; margin-bottom: 1.5rem; color: var(--color-light-primary); }
.faq-interactive__text-body { color: var(--color-light-secondary); max-width: 500px; line-height: 1.7; font-size: 1.8rem; }
.faq-interactive__mobile-accordion { display: none; }

@media (max-width: 992px) {
    .faq-interactive__layout { grid-template-columns: 1fr; }
    .faq-interactive__nav { margin-bottom: 5rem; }
    .faq-interactive__nav-button::before { display: none; }
}

@media (max-width: 768px) {
    .faq-interactive__layout { display: none; }
    .faq-interactive__mobile-accordion { display: block; }
    .faq-interactive__accordion-item { border-bottom: 1px solid rgba(233, 196, 106, 0.1); }
    .faq-interactive__accordion-header { display: flex; align-items: center; padding: 2.5rem 0; cursor: pointer; position: relative; }
    .faq-interactive__accordion-header::after { content: ''; display: block; width: 1rem; height: 1rem; border-right: 2px solid var(--color-accent-gold); border-bottom: 2px solid var(--color-accent-gold); transform: rotate(45deg); transition: transform 0.4s ease; margin-left: auto; }
    .faq-interactive__accordion-item.is-active .faq-interactive__accordion-header::after { transform: rotate(225deg); }
    .faq-interactive__accordion-title { font-size: 2rem; font-weight: 500; font-family: var(--font-primary); color: var(--color-light-primary); padding-right: 2rem; }
    .faq-interactive__accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.5s ease-out; }
    .faq-interactive__accordion-body .faq-interactive__text-body { padding-bottom: 2.5rem; }
}

.contact-section { position: relative; overflow: hidden; background-color: var(--color-dark-primary); }
.contact-section__map-background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; opacity: 0.5; }
.contact-section__map-background svg { width: 100%; height: 100%; }
.contact-section__map-background .map-pin { animation: pulse 3s infinite ease-out; transform-origin: center; }
@keyframes pulse { 0%, 100% { transform: scale(1) translate(450, 250); } 50% { transform: scale(1.2) translate(450, 250); } }
.contact-section__container { position: relative; z-index: 1; }
.contact-section__layout { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8rem; align-items: center; }
.contact-section__title { font-size: 4.8rem; margin-bottom: 2rem; color: var(--color-light-primary); }
.contact-section__text { color: var(--color-light-secondary); margin-bottom: 4rem; max-width: 450px; }
.contact-section__details { background-color: rgba(30, 30, 38, 0.7); border: 1px solid rgba(233, 196, 106, 0.1); border-radius: 8px; padding: 4rem; backdrop-filter: blur(10px); }
.contact-section__info-list { display: flex; flex-direction: column; gap: 4rem; }
.contact-section__info-item { display: flex; align-items: center; gap: 2.5rem; }
.contact-section__info-icon { color: var(--color-accent-gold); flex-shrink: 0; }
.contact-section__info-label { display: block; font-size: 1.4rem; color: var(--color-light-secondary); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 1px; }
.contact-section__info-value { font-size: 1.8rem; font-weight: 500; color: var(--color-light-primary); word-break: break-all; }
.contact-section__info-value:hover { color: var(--color-accent-gold); }
.contact-section__copy-btn { margin-left: auto; background: none; border: none; cursor: pointer; color: var(--color-light-secondary); padding: 1rem; border-radius: 50%; transition: all 0.3s ease; }
.contact-section__copy-btn:hover { color: var(--color-accent-gold); background-color: rgba(233, 196, 106, 0.1); }
.contact-section__copy-btn.is-copied { color: #2ecc71; }

@media (max-width: 992px) {
    .contact-section__layout { grid-template-columns: 1fr; gap: 6rem; }
    .contact-section__intro { text-align: center; }
    .contact-section__text { margin-left: auto; margin-right: auto; }
}

.footer-final {
    background-color: var(--color-dark-secondary);
    border-top: 1px solid rgba(233, 196, 106, 0.1);
    position: relative;
    padding-top: 10rem;
}

.footer-final::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(18, 18, 23, 0) 0%, var(--color-dark-primary) 100%);
    z-index: 0;
}

.footer-final__container {
    position: relative;
    z-index: 1;
}

.footer-final__grid {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 8rem;
    margin-bottom: 10rem;
}

.footer-final__col--brand {
    display: flex;
    flex-direction: column;
}

.footer-final__logo {
    height: 4rem;
    width: auto;
    color: var(--color-light-primary);
    margin-bottom: 3rem;
    transition: color 0.3s ease;
}

.footer-final__logo-link:hover .footer-final__logo {
    color: var(--color-accent-gold);
}

.footer-final__bio {
    color: var(--color-light-secondary);
    line-height: 1.8;
    margin-bottom: 4rem;
}

.footer-final__contact-direct {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
}

.footer-final__contact-link {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-light-primary);
    transition: color 0.3s ease;
}

.footer-final__contact-link:hover {
    color: var(--color-accent-gold);
}

.footer-final__col--nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.footer-final__nav-card {
    background-color: var(--color-dark-primary);
    padding: 3rem;
    border-radius: 8px;
    border: 1px solid rgba(233, 196, 106, 0.1);
    transition: all 0.3s ease;
}

.footer-final__nav-card:hover {
    transform: translateY(-5px);
    border-color: rgba(233, 196, 106, 0.3);
}

.footer-final__title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--color-light-primary);
}

.footer-final__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-final__link {
    color: var(--color-light-secondary);
    position: relative;
    display: inline-block;
    padding-bottom: 4px;
}

.footer-final__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--color-accent-gold);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.footer-final__link:hover::after {
    width: 100%;
    left: 0;
}

.footer-final__bottom-bar {
    border-top: 1px solid rgba(233, 196, 106, 0.1);
    padding: 3rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-final__bottom-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-final__copyright {
    font-size: 1.4rem;
    color: var(--color-light-secondary);
}

.footer-final__back-to-top {
    width: 5rem;
    height: 5rem;
    background: none;
    border: 2px solid rgba(233, 196, 106, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.footer-final__back-to-top:hover {
    background-color: var(--color-accent-gold);
    border-color: var(--color-accent-gold);
    transform: translateY(-3px);
}

.footer-final__btt-icon {
    color: var(--color-accent-gold);
    transition: color 0.3s ease;
}

.footer-final__back-to-top:hover .footer-final__btt-icon {
    color: var(--color-dark-primary);
}

@media (max-width: 992px) {
    .footer-final__grid {
        grid-template-columns: 1fr;
        gap: 6rem;
    }
}

@media (max-width: 768px) {
    .footer-final__col--nav {
        grid-template-columns: 1fr;
    }
    .footer-final__bottom-bar-container {
        flex-direction: column-reverse;
        gap: 2.5rem;
        text-align: center;
    }
}

.studio-hero { display: grid; grid-template-columns: 40% 60%; min-height: 80vh; background-color: var(--color-dark-primary); }
.studio-hero__image-pane { position: relative; clip-path: polygon(0 0, 100% 0, 80% 100%, 0% 100%); }
.studio-hero__image { width: 100%; height: 100%; object-fit: cover; }
.studio-hero__content-pane { display: flex; align-items: center; }
.studio-hero__content { max-width: 600px; padding-left: 10%; }
.studio-hero__title { font-size: clamp(4.2rem, 6.5vw, 7rem); font-weight: 700; line-height: 1.15; margin-bottom: 2.5rem; color: var(--color-light-primary); }
.studio-hero__title-line-wrapper { display: block; overflow: hidden; }
.studio-hero__title-line {
    display: block;
    transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}
[data-aos="reveal-up"] .studio-hero__title-line {
    transform: translateY(110%);
}

[data-aos="reveal-up"].aos-animate .studio-hero__title-line {
    transform: translateY(0);
}
[data-aos="reveal-up"].aos-animate .studio-hero__title-line { transform: translateY(0); transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1); }
.studio-hero__subtitle { font-size: clamp(1.8rem, 2.5vw, 2rem); color: var(--color-light-secondary); line-height: 1.8; }

.philosophy { background-color: var(--color-dark-secondary); }
.philosophy__container { display: grid; grid-template-columns: 2fr 1fr; gap: 8rem; align-items: center; }
.philosophy__title { font-size: 4.2rem; margin-bottom: 3rem; position: relative; }
.philosophy__title-ampersand { color: var(--color-accent-gold); font-style: italic; font-size: 1.2em; }
.philosophy__text { color: var(--color-light-secondary); font-size: 1.8rem; }
.philosophy__stats { display: flex; flex-direction: column; gap: 5rem; border-left: 2px solid var(--color-accent-gold); padding-left: 4rem; }
.philosophy__stat-item { text-align: left; }
.philosophy__stat-number { display: block; font-family: var(--font-primary); font-size: 6rem; font-weight: 700; color: var(--color-light-primary); line-height: 1; }
.philosophy__stat-label { color: var(--color-accent-gold); font-size: 1.6rem; }

.master-tailor__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8rem; align-items: center; }
.master-tailor__image-wrapper { position: relative; }
.master-tailor__image-wrapper::before { content: ''; position: absolute; top: -2rem; right: -2rem; width: 100%; height: 100%; border: 4px solid rgba(233, 196, 106, 0.2); z-index: -1; transition: all 0.4s ease; }
.master-tailor__image-wrapper:hover::before { transform: translate(1rem, 1rem); }
.master-tailor__image { width: 100%; height: auto; object-fit: cover; }
.master-tailor__tagline { display: block; color: var(--color-accent-gold); font-family: var(--font-primary); font-weight: 600; text-transform: uppercase; margin-bottom: 1.5rem; letter-spacing: 1.5px; }
.master-tailor__title { font-size: 4.8rem; margin-bottom: 2.5rem; }
.master-tailor__text { color: var(--color-light-secondary); margin-bottom: 4rem; }
.master-tailor__signature { height: 6rem; width: 100%; color: var(--color-light-primary); }

.legacy { background-color: var(--color-dark-secondary); }
.legacy__container { max-width: 900px; margin: 0 auto; }
.legacy__title { text-align: center; font-size: 4.8rem; margin-bottom: 8rem; }
.legacy__timeline { position: relative; }
.legacy__timeline-line { position: absolute; top: 0; left: 50%; width: 2px; height: 100%; background-color: rgba(233, 196, 106, 0.2); transform-origin: top; }
.legacy__item { position: relative; width: 50%; padding: 0 4rem; margin-bottom: 6rem; }
.legacy__item::after { content: ''; position: absolute; top: 0.5rem; width: 1.5rem; height: 1.5rem; background-color: var(--color-dark-secondary); border: 2px solid var(--color-accent-gold); border-radius: 50%; z-index: 1; }
.legacy__item--left { left: 0; text-align: right; }
.legacy__item--left::after { right: -0.75rem; transform: translateX(50%); }
.legacy__item--right { left: 50%; }
.legacy__item--right::after { left: -0.75rem; transform: translateX(-50%); }
.legacy__item-year { display: block; color: var(--color-accent-gold); font-family: var(--font-primary); font-size: 2rem; font-weight: 600; margin-bottom: 1rem; }
.legacy__item-title { font-size: 2.4rem; margin-bottom: 1rem; color: var(--color-light-primary); }
.legacy__item-text { color: var(--color-light-secondary); }

.studio-cta { background-color: var(--color-dark-primary); }
.studio-cta__container { text-align: center; max-width: 700px; }
.studio-cta__title { font-size: 4.8rem; margin-bottom: 2rem; }
.studio-cta__text { font-size: 1.8rem; color: var(--color-light-secondary); margin-bottom: 4rem; }

@media (max-width: 992px) {
    .master-tailor__grid { grid-template-columns: 1fr; }
    .master-tailor__image-wrapper { max-width: 500px; margin: 0 auto 5rem auto; }
}

@media (max-width: 768px) {
    .studio-hero { grid-template-columns: 1fr; }
    .studio-hero__image-pane { grid-row: 1; height: 50vh; clip-path: none; }
    .studio-hero__content-pane { padding: 6rem 0; }
    .studio-hero__content { padding-left: 0; text-align: center; }
    .philosophy__container { grid-template-columns: 1fr; gap: 6rem; }
    .philosophy__stats { border-left: none; padding-left: 0; flex-direction: row; justify-content: space-around; text-align: center;  flex-direction: column;}
    .legacy__timeline-line { left: 0; }
    .legacy__item { width: 100%; left: 0 !important; text-align: left !important; padding-left: 4rem; }
    .legacy__item::after { left: 0 !important; }
}

.master-tailor {
    position: relative;
    overflow: hidden;
}

.master-tailor__container {
    position: relative;
}

.master-tailor__background-text {
    position: absolute;
    bottom: -5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-primary);
    font-size: clamp(15rem, 30vw, 35rem);
    font-weight: 700;
    color: rgba(244, 244, 249, 0.03);
    z-index: 0;
    white-space: nowrap;
    user-select: none;
}

.master-tailor__grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    align-items: center;
    position: relative;
}

.master-tailor__image-wrapper {
    grid-column: 1 / 8;
    grid-row: 1;
    border-radius: 8px;
    overflow: hidden;
}

.master-tailor__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.master-tailor__image-wrapper:hover .master-tailor__image {
    transform: scale(1.05);
}

.master-tailor__content-card {
    grid-column: 7 / 11;
    grid-row: 1;
    background-color: var(--color-dark-primary);
    padding: 5rem;
    border: 1px solid rgba(233, 196, 106, 0.1);
    border-radius: 8px;
    position: relative;
    box-shadow: -20px 20px 40px rgba(0,0,0,0.2);
}

.master-tailor__tagline {
    display: block;
    color: var(--color-accent-gold);
    font-family: var(--font-primary);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    letter-spacing: 1.5px;
}

.master-tailor__title {
    font-size: 4.8rem;
    margin-bottom: 2.5rem;
}

.master-tailor__text {
    color: var(--color-light-secondary);
    margin-bottom: 4rem;
}


.master-tailor__signature path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    transition: stroke-dashoffset 2.5s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.master-tailor__signature.is-drawing path {
    stroke-dashoffset: 0;
}

@media (max-width: 992px) {
    .master-tailor__grid {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
    .master-tailor__image-wrapper {
        width: 100%;
        max-width: 500px;
    }
    .master-tailor__content-card {
        margin-top: -8rem;
        padding: 2rem;
    }
    .master-tailor__background-text {
       display: none;
    }
}

@media (max-width: 768px) {
     .master-tailor__title {
        font-size: 2.6rem;
    }
}

.legacy-scroller {
    background-color: var(--color-dark-secondary);
}

.legacy-scroller__main-title {
    text-align: center;
    font-size: 4.8rem;
    margin-bottom: 8rem;
}

.legacy-scroller__layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 8rem;
}

.legacy-scroller__year-pane {
    position: relative;
}

.legacy-scroller__sticky-content {
    position: sticky;
    top: 20vh;
    height: 60vh;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.legacy-scroller__progress-track {
    width: 2px;
    height: 100%;
    background-color: rgba(233, 196, 106, 0.1);
    position: relative;
}

.legacy-scroller__progress-fill {
    width: 100%;
    height: 0;
    background-color: var(--color-accent-gold);
    transition: height 0.4s ease-out;
}

.legacy-scroller__year-display {
    font-family: var(--font-primary);
    font-size: clamp(8rem, 15vw, 12rem);
    font-weight: 700;
    color: var(--color-light-primary);
    line-height: 1;
    transition: opacity 0.4s ease;
}

.legacy-scroller__content-pane {
    padding-top: 15vh;
    padding-bottom: 15vh;
}

.legacy-scroller__item {
    padding: 4rem;
    margin-bottom: 30vh;
    border-left: 2px solid transparent;
    transition: border-color 0.4s ease;
}

.legacy-scroller__item.is-inview {
    border-left-color: var(--color-accent-gold);
}

.legacy-scroller__item:last-child {
    margin-bottom: 0;
}

.legacy-scroller__item-title {
    font-size: 3.2rem;
    margin-bottom: 2rem;
    color: var(--color-light-primary);
}

.legacy-scroller__item-text {
    color: var(--color-light-secondary);
    font-size: 1.8rem;
    max-width: 500px;
}

@media (max-width: 768px) {
    .legacy-scroller__layout {
        grid-template-columns: 1fr;
    }
    .legacy-scroller__year-pane {
        display: none;
    }
    .legacy-scroller__content-pane {
        padding: 0;
    }
    .legacy-scroller__item {
        margin-bottom: 5rem;
        padding: 0;
        border-left: none;
    }
     .legacy-scroller__item::before {
        content: attr(data-year);
        display: block;
        color: var(--color-accent-gold);
        font-family: var(--font-primary);
        font-size: 2rem;
        font-weight: 600;
        margin-bottom: 1rem;
    }
}

.final-cta {
    min-height: 600px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.final-cta__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.final-cta__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    filter: blur(0px);
}

.final-cta__container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-end;
}

.final-cta__content-card {
    width: 50%;
    max-width: 550px;
    padding: 3rem;
    background-color: rgba(30, 30, 38, 0.5);
    border: 1px solid rgba(233, 196, 106, 0.15);
    border-radius: 12px;
    backdrop-filter: blur(15px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.final-cta__title {
    font-size: 3.8rem;
    margin-bottom: 2rem;
    color: var(--color-light-primary);
}

.final-cta__text {
    font-size: 1.8rem;
    color: var(--color-light-secondary);
    margin-bottom: 5rem;
    line-height: 1.7;
}

.final-cta__magnetic-button {
    width: 18rem;
    height: 18rem;
    border-radius: 50%;
    background-color: var(--color-accent-gold);
    color: var(--color-dark-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

.final-cta__magnetic-button-text {
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 992px) {
    .final-cta__content-card {
        width: 70%;
    }
}

@media (max-width: 768px) {
    .final-cta__container {
        justify-content: center;
    }
    .final-cta__content-card {
        width: 100%;
        text-align: center;
    }
    .final-cta__magnetic-button {
        margin: 0 auto;
        width: 16rem;
        height: 16rem;
        font-size: 1.6rem;
    }
}

.page-hero {
    background-color: var(--color-dark-secondary);
    padding: 12rem 0;
    border-bottom: 1px solid rgba(233, 196, 106, 0.1);
}

.page-hero__title {
    font-size: clamp(4.2rem, 6.5vw, 7.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 2.5rem;
    color: var(--color-light-primary);
    max-width: 800px;
}

.page-hero__subtitle {
    font-size: clamp(1.8rem, 2.5vw, 2rem);
    color: var(--color-light-secondary);
    line-height: 1.8;
    max-width: 700px;
}

.narrative-showcase {
    background-color: var(--color-dark-primary);
}

.narrative-showcase__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8rem;
    position: relative;
}

.narrative-showcase__visual-pane {
    position: relative;
    height: 100%;
}

.narrative-showcase__sticky-wrapper {
    position: sticky;
    top: 15vh;
    height: 70vh;
}

.narrative-showcase__image-container {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.narrative-showcase__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.narrative-showcase__image.is-active {
    opacity: 1;
    transform: scale(1);
}

.narrative-showcase__content-pane {
    padding-top: 15vh;
    padding-bottom: 15vh;
}

.narrative-showcase__item {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 3px solid transparent;
    padding-left: 4rem;
    transition: border-color 0.5s ease;
}

.narrative-showcase__item.is-active {
    border-left-color: var(--color-accent-gold);
}

.narrative-showcase__item-number {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-accent-gold);
    margin-bottom: 2rem;
}

.narrative-showcase__item-title {
    font-size: clamp(3.2rem, 5vw, 4.8rem);
    margin-bottom: 2.5rem;
    color: var(--color-light-primary);
}

.narrative-showcase__item-text {
    color: var(--color-light-secondary);
    font-size: 1.8rem;
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 4rem;
}

.narrative-showcase__item-link {
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--color-light-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid rgba(233, 196, 106, 0.5);
    padding: 1.2rem 2.4rem;
    border-radius: 5px;
    align-self: flex-start;
    transition: all 0.3s ease;
}

.narrative-showcase__item-link:hover {
    background-color: var(--color-accent-gold);
    border-color: var(--color-accent-gold);
    color: var(--color-dark-primary);
}

@media (max-width: 992px) {
    .narrative-showcase__layout {
        grid-template-columns: 1fr;
    }
    .narrative-showcase__visual-pane {
        display: none;
    }
    .narrative-showcase__content-pane {
        padding-top: 0;
        padding-bottom: 0;
    }
    .narrative-showcase__item {
        min-height: auto;
        padding: 6rem 0;
        border-bottom: 1px solid rgba(233, 196, 106, 0.1);
        opacity: 1;
    }
}


.testimonials {
    background-color: var(--color-dark-primary);
}

.testimonials__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 10rem;
    align-items: center;
    min-height: 60vh;
}

.testimonials__content-pane {
    position: relative;
    height: 30rem;
}

.testimonials__content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.testimonials__content.is-active {
    opacity: 1;
    transform: translateY(0);
}

.testimonials__quote {
    font-family: var(--font-primary);
    font-size: clamp(2.4rem, 3vw, 3.2rem);
    font-weight: 500;
    line-height: 1.5;
    color: var(--color-light-primary);
    margin-bottom: 3rem;
    position: relative;
    padding-left: 5rem;
}

.testimonials__quote::before {
    content: '“';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 5rem;
    color: var(--color-accent-gold);
    line-height: 1;
}

.testimonials__author {
    font-style: normal;
    padding-left: 5rem;
}

.testimonials__author-name {
    display: block;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--color-light-primary);
}

.testimonials__author-title {
    font-size: 1.6rem;
    color: var(--color-light-secondary);
}

.testimonials__nav-title {
    color: var(--color-light-secondary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-align: center;
}

.testimonials__nav-list {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.testimonials__nav-button {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    border: 2px solid transparent;
    padding: 4px;
    cursor: pointer;
    background: none;
    transition: border-color 0.4s ease;
}

.testimonials__nav-button.is-active,
.testimonials__nav-button:hover {
    border-color: var(--color-accent-gold);
}

.testimonials__nav-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.testimonials__nav-button.is-active .testimonials__nav-avatar,
.testimonials__nav-button:hover .testimonials__nav-avatar {
    filter: grayscale(0%);
}

@media (max-width: 992px) {
    .testimonials__grid {
        grid-template-columns: 1fr;
        gap: 6rem;
    }
    .testimonials__content-pane {
        text-align: center;
    }
    .testimonials__quote {
        padding-left: 0;
        padding-top: 4rem;
    }
     .testimonials__quote::before {
        top: 0;
        left: 50%;
        transform: translateX(-50%);
    }
    .testimonials__author {
        padding-left: 0;
    }
    .testimonials__nav {
        order: -1;
    }
}

.service-hero { position: relative; height: 70vh; min-height: 500px; display: flex; align-items: flex-end; color: var(--color-light-primary); padding-bottom: 8rem; }
.service-hero__background { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: -1; }
.service-hero__background::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(18, 18, 23, 0.9) 10%, transparent 60%); }
.service-hero__bg-image { width: 100%; height: 100%; object-fit: cover; }
.service-hero__content { max-width: 800px; }
.service-hero__tagline { display: block; color: var(--color-accent-gold); font-family: var(--font-primary); font-weight: 600; text-transform: uppercase; margin-bottom: 1.5rem; letter-spacing: 1.5px; }
.service-hero__title { font-size: clamp(4.2rem, 6.5vw, 8rem); line-height: 1.1; margin-bottom: 2rem; }
.service-hero__intro { font-size: 1.8rem; color: var(--color-light-secondary); line-height: 1.8; max-width: 650px; }

.process-grid { background-color: var(--color-dark-secondary); }
.process-grid__layout { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4rem; }
.process-grid__item { text-align: center; }
.process-grid__item-icon {
    width: 48px;
    height: 48px;
    stroke: var(--color-accent-gold);
    margin: 0 auto 2rem auto;
    transition: stroke 0.3s ease;
}

.process-grid__item:hover .process-grid__item-icon {
    stroke: var(--color-light-primary);
}
.process-grid__item-title { font-size: 2.2rem; margin-bottom: 1.5rem; }
.process-grid__item-text { color: var(--color-light-secondary); }

.anatomy { background-color: var(--color-dark-primary); }
.anatomy__container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 8rem; align-items: center; }
.anatomy__title { font-size: 4.8rem; margin-bottom: 2rem; }
.anatomy__intro { color: var(--color-light-secondary); font-size: 1.8rem; margin-bottom: 4rem; }
.anatomy__feature-list { display: flex; flex-direction: column; }
.anatomy__feature-item { padding: 2.5rem 2rem; border-left: 3px solid transparent; cursor: pointer; transition: all 0.4s ease; }
.anatomy__feature-item.is-active { border-left-color: var(--color-accent-gold); background-color: var(--color-dark-secondary); }
.anatomy__feature-title { font-size: 2.2rem; margin-bottom: 1rem; color: var(--color-light-primary); }
.anatomy__feature-text { color: var(--color-light-secondary); line-height: 1.7; }
.anatomy__visual-pane { height: 60rem; border-radius: 8px; overflow: hidden; }
.anatomy__image-wrapper { position: relative; width: 100%; height: 100%; }
.anatomy__image { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.1); transition: opacity 0.6s ease, transform 0.6s ease; }
.anatomy__image.is-active { opacity: 1; transform: scale(1); }

.showcase-gallery { background-color: var(--color-dark-secondary); overflow: hidden; }
.showcase-gallery__title { text-align: center; font-size: 4.8rem; margin-bottom: 6rem; }
.showcase-gallery__swiper-container { position: relative; padding: 0 8rem; }
.showcase-gallery__swiper { }
.showcase-gallery__slide { height: 60rem; border-radius: 8px; overflow: hidden; }
.showcase-gallery__slide img { width: 100%; height: 100%; object-fit: cover; }
.showcase-gallery__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 5rem; height: 5rem; border-radius: 50%; border: 2px solid rgba(233, 196, 106, 0.3); z-index: 10; cursor: pointer; transition: all 0.3s ease; }
.showcase-gallery__nav:hover { background-color: var(--color-accent-gold); border-color: var(--color-accent-gold); }
.showcase-gallery__nav::after { content: ''; position: absolute; top: 50%; left: 50%; width: 1rem; height: 1rem; border-top: 2px solid var(--color-accent-gold); border-left: 2px solid var(--color-accent-gold); transition: border-color 0.3s ease; }
.showcase-gallery__nav:hover::after { border-color: var(--color-dark-primary); }
.showcase-gallery__nav--prev { left: 0; }
.showcase-gallery__nav--prev::after { transform: translate(15%, -50%) rotate(-45deg); }
.showcase-gallery__nav--next { right: 0; }
.showcase-gallery__nav--next::after { transform: translate(-85%, -50%) rotate(135deg); }

@media (max-width: 992px) {
    .process-grid__layout { grid-template-columns: repeat(2, 1fr); }
    .anatomy__container { grid-template-columns: 1fr; }
    .anatomy__visual-pane { height: 50rem; margin-top: 5rem; }
}

@media (max-width: 768px) {
    .process-grid__layout { grid-template-columns: 1fr; }
    .showcase-gallery__swiper-container { padding: 0; }
    .showcase-gallery__nav { display: none; }
}

.expanding-process { background-color: var(--color-dark-secondary); }
.expanding-process__layout { display: grid; grid-template-columns: auto 1fr; gap: 6rem; max-width: 900px; margin: 0 auto; }
.expanding-process__timeline { position: relative; padding: 2rem 0; }
.expanding-process__timeline-track { position: relative; width: 2px; height: 100%; background-color: rgba(233, 196, 106, 0.1); }
.expanding-process__timeline-node { position: absolute; left: 50%; width: 1.2rem; height: 1.2rem; background-color: var(--color-dark-secondary); border: 2px solid rgba(233, 196, 106, 0.5); border-radius: 50%; transform: translateX(-50%); transition: all 0.5s ease; }
.expanding-process__timeline-node[data-step="1"] { top: 12%; }
.expanding-process__timeline-node[data-step="2"] { top: 37%; }
.expanding-process__timeline-node[data-step="3"] { top: 62%; }
.expanding-process__timeline-node[data-step="4"] { top: 87%; }
.expanding-process__item.is-active .expanding-process__timeline-node { border-color: var(--color-accent-gold); background-color: var(--color-accent-gold); transform: translateX(-50%) scale(1.3); }
.expanding-process__item { border-bottom: 1px solid rgba(233, 196, 106, 0.1); }
.expanding-process__header { display: flex; align-items: center; gap: 2.5rem; padding: 3rem 0; cursor: pointer; }
.expanding-process__item:not(.is-active) .expanding-process__header { opacity: 0.6; }
.expanding-process__step-number { font-family: var(--font-primary); font-size: 1.6rem; font-weight: 600; color: var(--color-accent-gold); }
.expanding-process__title { font-size: clamp(2.4rem, 4vw, 3.2rem); font-weight: 500; color: var(--color-light-primary); transition: color 0.3s ease; }
.expanding-process__item:hover .expanding-process__title { color: var(--color-accent-gold); }
.expanding-process__body { max-height: 0; overflow: hidden; transition: max-height 0.7s cubic-bezier(0.22, 1, 0.36, 1), padding-bottom 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
.expanding-process__item.is-active .expanding-process__body { max-height: 30rem; padding-bottom: 3rem; }
.expanding-process__content { display: flex; align-items: flex-start; gap: 3rem; background-color: var(--color-dark-primary); padding: 3rem; border-radius: 8px; }
.expanding-process__icon { width: 4rem; height: 4rem; stroke: var(--color-accent-gold); flex-shrink: 0; }
.expanding-process__text { color: var(--color-light-secondary); font-size: 1.6rem; line-height: 1.7; }

@media (max-width: 768px) {
    .expanding-process__layout { grid-template-columns: 1fr; }
    .expanding-process__timeline { display: none; }
    .expanding-process__content { flex-direction: column; text-align: center; }
    .expanding-process__icon { margin: 0 auto 1.5rem auto; }
}

.masonry-gallery {
    background-color: var(--color-dark-secondary);
}

.masonry-gallery__title {
    text-align: center;
    font-size: 4.8rem;
    margin-bottom: 6rem;
}

.masonry-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 25rem;
    gap: 2rem;
}

.masonry-gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    grid-column: span 2;
    grid-row: span 1;
}

.masonry-gallery__item--v2 { grid-row: span 2; }
.masonry-gallery__item--h2 { grid-column: span 2; }

/* Example manual placement for this specific page */
.masonry-gallery__item:nth-child(1) { grid-column: 1 / 3; grid-row: 1 / 3; }
.masonry-gallery__item:nth-child(2) { grid-column: 3 / 4; grid-row: 1 / 2; }
.masonry-gallery__item:nth-child(3) { grid-column: 4 / 5; grid-row: 1 / 2; }
.masonry-gallery__item:nth-child(4) { grid-column: 3 / 5; grid-row: 2 / 4; }
.masonry-gallery__item:nth-child(5) { grid-column: 1 / 3; grid-row: 3 / 5; }
.masonry-gallery__item:nth-child(6) { grid-column: 3 / 5; grid-row: 4 / 5; }

.masonry-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.masonry-gallery__item:hover img {
    transform: scale(1.05);
}

.masonry-gallery__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    background: linear-gradient(to top, rgba(18, 18, 23, 0.8) 0%, transparent 100%);
    color: var(--color-light-primary);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
}

.masonry-gallery__item:hover .masonry-gallery__overlay {
    opacity: 1;
    transform: translateY(0);
}

.masonry-gallery__item-title {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.masonry-gallery__item-category {
    font-size: 1.4rem;
    color: var(--color-accent-gold);
}

@media (max-width: 992px) {
    .masonry-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 20rem;
    }
    .masonry-gallery__item,
    .masonry-gallery__item--h2 {
        grid-column: span 1;
    }
    .masonry-gallery__item:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 3; }
    .masonry-gallery__item:nth-child(2) { grid-column: 2 / 3; grid-row: 1 / 2; }
    .masonry-gallery__item:nth-child(3) { grid-column: 2 / 3; grid-row: 2 / 3; }
    .masonry-gallery__item:nth-child(4) { grid-column: 1 / 2; grid-row: 3 / 5; }
    .masonry-gallery__item:nth-child(5) { grid-column: 2 / 3; grid-row: 3 / 5; }
    .masonry-gallery__item:nth-child(6) { grid-column: 1 / 3; grid-row: 5 / 6; }
}

@media (max-width: 768px) {
    .masonry-gallery__grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    .masonry-gallery__item,
    .masonry-gallery__item--v2,
    .masonry-gallery__item--h2,
    .masonry-gallery__item:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
        height: 35rem;
    }
}

.customizer-page {
    overflow: hidden;
}
.suit-customizer {
    display: grid;
    grid-template-columns: 450px 1fr;
    height: calc(100vh - var(--header-height));
    margin-top: var(--header-height);
}
.suit-customizer__controls-pane {
    background-color: var(--color-dark-secondary);
    padding: 4rem;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}
.suit-customizer__header {
    margin-bottom: 4rem;
}
.suit-customizer__main-title {
    font-size: 3.6rem;
    margin-bottom: 1rem;
}
.suit-customizer__subtitle {
    color: var(--color-light-secondary);
}
.suit-customizer__main-nav {
    display: flex;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(233, 196, 106, 0.1);
}
.suit-customizer__nav-tab {
    flex-grow: 1;
    background: none;
    border: none;
    color: var(--color-light-secondary);
    padding: 1.5rem 0;
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}
.suit-customizer__nav-tab:hover {
    color: var(--color-light-primary);
}
.suit-customizer__nav-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent-gold);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
}
.suit-customizer__nav-tab.is-active {
    color: var(--color-accent-gold);
}
.suit-customizer__nav-tab.is-active::after {
    transform: scaleX(1);
}
.suit-customizer__options-panel {
    display: none;
}
.suit-customizer__options-panel.is-active {
    display: block;
    animation: fadeIn 0.5s ease;
}
.suit-customizer__option-group {
    margin-bottom: 3rem;
}
.suit-customizer__option-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--color-light-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}
.suit-customizer__option-buttons {
    display: flex;
    gap: 1.5rem;
}
.suit-customizer__option-btn {
    flex-grow: 1;
    background-color: var(--color-dark-primary);
    border: 1px solid transparent;
    border-radius: 5px;
    color: var(--color-light-secondary);
    padding: 1.2rem;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
}
.suit-customizer__option-btn:hover {
    border-color: rgba(233, 196, 106, 0.5);
}
.suit-customizer__option-btn.is-active {
    background-color: var(--color-accent-gold);
    color: var(--color-dark-primary);
    border-color: var(--color-accent-gold);
}
.suit-customizer__color-swatches {
    display: flex;
    gap: 1.5rem;
}
.suit-customizer__color-swatch {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.suit-customizer__color-swatch.is-active {
    border-color: var(--color-light-primary);
    transform: scale(1.1);
}
.suit-customizer__visual-pane {
    background-color: var(--color-dark-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem;
}
#suit-svg {
    width: 100%;
    max-width: 350px;
    height: auto;
}
#suit-svg .suit-part path, #suit-svg .suit-part circle {
    fill: #2c3e50;
    stroke: var(--color-light-primary);
    stroke-width: 2px;
    transition: fill 0.4s ease, opacity 0.4s ease;
}
#suit-svg #suit-tie path {
    fill: #c0392b;
}

@media (max-width: 992px) {
    .suit-customizer {
        grid-template-columns: 1fr;
        height: auto;
        margin-top: var(--header-height);
    }
    .suit-customizer__controls-pane {
        height: auto;
    }
    .suit-customizer__visual-pane {
        height: 60vh;
        min-height: 400px;
    }
}

.suit-customizer__color-swatch[data-color="#2c3e50"] {
    background-color: #2c3e50;
}
.suit-customizer__color-swatch[data-color="#34495e"] {
    background-color: #34495e;
}
.suit-customizer__color-swatch[data-color="#7f8c8d"] {
    background-color: #7f8c8d;
}
.suit-customizer__color-swatch[data-color="#95a5a6"] {
    background-color: #95a5a6;
}
.suit-customizer__color-swatch[data-color="#c0392b"] {
    background-color: #c0392b;
}
.suit-customizer__color-swatch[data-color="#2980b9"] {
    background-color: #2980b9;
}
.suit-customizer__color-swatch[data-color="#27ae60"] {
    background-color: #27ae60;
}
.suit-customizer__color-swatch[data-color="#f39c12"] {
    background-color: #f39c12;
}

#suit-svg #lapel-peak,
#suit-svg #buttons-one,
#suit-svg #trousers-pleats {
    opacity: 0;
}

#suit-svg #lapel-notch,
#suit-svg #buttons-two,
#suit-svg #trousers-base {
    opacity: 1;
}

.legal-page {
    background-color: var(--color-dark-secondary);
    padding: 12rem 0;
}

.legal-page__container {
    max-width: 800px;
}

.legal-page__main-title {
    font-size: clamp(4rem, 6.5vw, 6.2rem);
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--color-accent-gold);
    padding-bottom: 2rem;
}

.legal-page__last-updated {
    color: var(--color-light-secondary);
    margin-bottom: 5rem;
    font-style: italic;
}

.legal-page__content h2 {
    font-size: 2.8rem;
    margin-top: 4rem;
    margin-bottom: 2rem;
    color: var(--color-light-primary);
}

.legal-page__content p,
.legal-page__content li {
    color: var(--color-light-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-page__content ul {
    list-style: disc;
    padding-left: 3rem;
}

.legal-page__content a {
    color: var(--color-accent-gold);
    text-decoration: underline;
}

.legal-page__content a:hover {
    text-decoration: none;
}

.testimonial-slider {
    margin-top: auto;
    padding-top: 4rem;
    border-top: 1px solid rgba(233, 196, 106, 0.1);
}

.testimonial-slider__container {
    width: 100%;
    height: 18rem;
    position: relative;
}

.testimonial-slider__slide {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-slider__quote {
    font-size: 1.6rem;
    color: var(--color-light-secondary);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-align: center;
}

.testimonial-slider__author {
    text-align: center;
}

.testimonial-slider__author-name {
    display: block;
    font-weight: 600;
    color: var(--color-light-primary);
}

.testimonial-slider__author-title {
    font-size: 1.4rem;
    color: var(--color-accent-gold);
}

.testimonial-slider__pagination {
    position: relative;
    bottom: 0;
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.testimonial-slider__pagination .swiper-pagination-bullet {
    background-color: rgba(233, 196, 106, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.testimonial-slider__pagination .swiper-pagination-bullet-active {
    background-color: var(--color-accent-gold);
    width: 2rem;
    border-radius: 5px;
}