:root {
    --font-main: 'Roboto', sans-serif;
    --font-headings: cursive;
    --color-background: #FDFBF8;
    --color-text: #2C3E50;
    --color-accent: #B08968;
    --color-secondary: #7F5539;
    --color-light-accent: #EDE0D4;
    --color-white: #FFFFFF;
    --container-width: 1200px;
    --container-padding: 1.5rem;
    --section-padding: 6rem 0;
    --transition-speed: 0.3s;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

body.body--loaded {
    opacity: 1;
}

body.no-scroll {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }

p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition-speed) ease;
}

a:hover {
    color: var(--color-secondary);
}

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

ul {
    list-style: none;
}

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

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

.section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.section__title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
    margin: 0.5rem auto 0;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-weight: 500;
    border-radius: 50px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    transition: all var(--transition-speed) ease;
    border: 2px solid var(--color-secondary);
    text-align: center;
}

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

.btn--outline {
    background-color: transparent;
    color: var(--color-accent);
    border-color: var(--color-accent);
}

.btn--outline:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background-color: rgba(253, 251, 248, 0.8);
    backdrop-filter: blur(10px);
    transition: all var(--transition-speed) ease;
    border-bottom: 1px solid transparent;
}

.header--scrolled {
    padding: 0.5rem 0;
    border-bottom-color: var(--color-light-accent);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    display: block;
}

.header__logo-img {
    height: 40px;
    width: auto;
}

.header__nav-list {
    display: flex;
    gap: 2rem;
}

.header__nav-link {
    color: var(--color-text);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-speed) ease;
}

.header__nav-link:hover::after,
.header__nav-link--active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.header__burger {
    display: none;
    z-index: 1001;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: none;
    overflow: hidden;
    position: relative;
    padding-top: 120px;
    padding-bottom: 60px;
}

.hero__content {
    max-width: 600px;
}

.hero__subtitle {
    font-family: var(--font-main);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.site-wrapper {
    overflow: clip;
}

.hero__title {
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.hero__description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.philosophy {
    background-color: var(--color-light-accent);
}

.philosophy__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.philosophy__item-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    stroke: var(--color-secondary);
}

.philosophy__item-title {
    margin-bottom: 1rem;
}

.process {
    padding-bottom: 10rem;
}

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

.process__item {
    grid-column: span 6;
    position: relative;
}

.process__item:nth-child(odd) .process__item-content {
    text-align: right;
    padding-right: 4rem;
}

.process__item:nth-child(even) {
    margin-top: 8rem;
}

.process__item:nth-child(even) .process__item-content {
    order: 2;
    text-align: left;
    padding-left: 4rem;
}

.process__item-image-wrapper {
    position: relative;
    box-shadow: 10px 10px 30px rgba(44, 62, 80, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.process__item-image-wrapper::before {
    content: '';
    position: absolute;
    inset: -15px;
    border: 2px solid var(--color-accent);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.5;
}

.process__item-number {
    position: absolute;
    top: -2rem;
    font-size: 5rem;
    font-weight: 700;
    color: var(--color-light-accent);
    z-index: -1;
}

.process__item:nth-child(odd) .process__item-number {
    right: 1rem;
}

.process__item:nth-child(even) .process__item-number {
    left: 1rem;
}

.process__item-title {
    margin-bottom: 1rem;
}

.gallery {
    background-color: var(--color-text);
    color: var(--color-white);
}

.gallery .section__title {
    color: var(--color-white);
}

.gallery .section__title::after {
    background-color: var(--color-accent);
}

.gallery__slider {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.gallery__slide {
    background-position: center;
    background-size: cover;
    width: 320px;
    height: 480px;
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}


.swiper-slide-shadow-left,
.swiper-slide-shadow-right {
    background-image: none !important;
}



.swiper-pagination-bullet {
    background-color: var(--color-accent) !important;
}

.footer {
    background-color: var(--color-text);
    color: var(--color-background);
    padding-top: 4rem;
}

.footer a {
    color: var(--color-light-accent);
}

.footer a:hover {
    color: var(--color-white);
}

.footer__main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo-img {
    filter: invert(1) brightness(2);
}

.footer__about-text {
    opacity: 0.8;
    margin-top: 1rem;
}

.footer__title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.footer__list-item {
    margin-bottom: 0.75rem;
}

.footer__social-list {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer__social-link svg {
    width: 24px;
    height: 24px;
    fill: var(--color-light-accent);
    transition: fill var(--transition-speed) ease;
}

.footer__social-link:hover svg {
    fill: var(--color-white);
}

.footer__bottom {
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 992px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2.1rem; }
    .section { padding: 4rem 0; }
    
    .philosophy__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .process__item,
    .process__item:nth-child(even) {
        grid-column: span 12;
        margin-top: 4rem;
    }
    .process__item:first-child { margin-top: 0; }

    .process__item:nth-child(odd) .process__item-content,
    .process__item:nth-child(even) .process__item-content {
        text-align: left;
        padding: 0;
        order: 2;
        margin-top: 1.5rem;
    }
    
    .process__item-image-wrapper { order: 1; }
    
    .testimonials__container {
        grid-template-columns: 1fr;
    }

    .testimonials::before { display: none; }

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

@media (max-width: 768px) {
    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--color-background);
        display: flex;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform var(--transition-speed) ease-in-out;
    }

    .header__nav.is-open {
        transform: translateX(0);
    }

    .header__nav-list {
        flex-direction: column;
        text-align: center;
        gap: 2.5rem;
    }

    .header__nav-link {
        font-size: 1.5rem;
    }

    .header__burger {
        display: block;
        width: 30px;
        height: 22px;
        position: relative;
    }

    .header__burger-line {
        position: absolute;
        left: 0;
        width: 100%;
        height: 3px;
        background-color: var(--color-text);
        transition: all var(--transition-speed) ease;
        border-radius: 3px;
    }
    .header__burger-line:nth-child(1) { top: 0; }
    .header__burger-line:nth-child(2) { top: 50%; transform: translateY(-50%); }
    .header__burger-line:nth-child(3) { bottom: 0; }
    
    .header__burger.is-active .header__burger-line:nth-child(1) {
        transform: translateY(9.5px) rotate(45deg);
    }
    .header__burger.is-active .header__burger-line:nth-child(2) {
        opacity: 0;
    }
    .header__burger.is-active .header__burger-line:nth-child(3) {
        transform: translateY(-9.5px) rotate(-45deg);
    }

    .hero { min-height: 80vh; text-align: center; }
    .hero__content { margin: 0 auto; }
    .hero__title { font-size: 2.5rem; }

    .footer__main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer__social-list { justify-content: center; }
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: none;
    overflow: visible;
    padding-top: 120px;
    padding-bottom: 60px;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

.hero__content {
    max-width: 550px;
}

.hero__visuals {
    position: relative;
    height: 100%;
    min-height: 500px;
}

.hero__visuals-wrapper {
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(44, 62, 80, 0.25);
    overflow: hidden;
    position: absolute;
    border: 8px solid var(--color-white);
}

.hero__visuals-wrapper--secondary {
    width: 50%;
    bottom: 0;
    right: 0;
    z-index: 2;
}

.hero__shape {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    background-color: var(--color-light-accent);
}

.hero__shape--1 {
    width: 40vw;
    height: 40vw;
    top: -10vw;
    left: -15vw;
    opacity: 0.6;
}

.hero__shape--2 {
    width: 25vw;
    height: 25vw;
    bottom: -5vw;
    right: -10vw;
    background-color: var(--color-accent);
    opacity: 0.3;
}

.philosophy {
    background-color: var(--color-light-accent);
}

.philosophy__container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.philosophy__visual {
    border-radius: 12px;
    overflow: hidden;
}

.philosophy__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.philosophy__title {
    text-align: left;
    margin-bottom: 2.5rem;
}

.philosophy__title::after {
    margin: 0.5rem 0 0;
}

.philosophy__item {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(176, 137, 104, 0.3);
    position: relative;
    padding-left: 1.5rem;
}

.philosophy__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1.5rem;
    bottom: 1.5rem;
    width: 4px;
    background-color: var(--color-accent);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.philosophy__item:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

.philosophy__item:last-child {
    border-bottom: none;
}

.philosophy__item-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.philosophy__item-number {
    font-family: var(--font-headings);
    font-size: 1.25rem;
    color: var(--color-accent);
    font-weight: 700;
}

.philosophy__item-title {
    margin-bottom: 0;
}

.philosophy__item-description {
    margin-bottom: 0;
    padding-left: 3rem;
}

@media (max-width: 992px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero__content {
        order: 2;
        margin: 0 auto;
    }
    .hero__visuals {
        order: 1;
        min-height: 400px;
        margin-bottom: 2rem;
    }

    .philosophy__container {
        grid-template-columns: 1fr;
    }
    .philosophy__visual {
        max-height: 400px;
    }
    .philosophy__title {
        text-align: center;
    }
    .philosophy__title::after {
        margin-left: auto;
        margin-right: auto;
    }
}

.gallery-v2 {
    background-color: var(--color-text);
    color: var(--color-background);
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.gallery-v2__bg-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80vw;
    height: 80vw;
    background-color: rgba(176, 137, 104, 0.05);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.gallery-v2__container {
    position: relative;
    z-index: 1;
}

.gallery-v2__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.gallery-v2__title {
    color: var(--color-white);
}
.gallery-v2__title::after {
    background-color: var(--color-accent);
}

.gallery-v2__subtitle {
    opacity: 0.8;
}

.gallery-v2__layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: flex-start;
}

.gallery-v2__nav-item {
    padding: 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    border-left: 3px solid transparent;
    transition: all var(--transition-speed) ease;
}

.gallery-v2__nav-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

.gallery-v2__nav-item.is-active {
    border-left-color: var(--color-accent);
    background-color: rgba(176, 137, 104, 0.1);
}

.gallery-v2__nav-title {
    font-size: 1.25rem;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.gallery-v2__nav-desc {
    margin-bottom: 0;
    opacity: 0.7;
}

.gallery-v2__stage-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.gallery-v2__stage-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: fadeIn 0.8s forwards;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.faq-v2 {
    background-color: var(--color-background);
}
.faq-v2__header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-v2__subtitle {
    max-width: 600px;
    margin: 1rem auto 0;
}

.faq-v2__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--color-white);
    padding: 4rem;
    border-radius: 16px;
    align-items: flex-start; /* Changed to align-items: flex-start */
    box-shadow: 0 10px 40px rgba(44, 62, 80, 0.08);
}

.faq-v2__question-btn {
    width: 100%;
    text-align: left;
    padding: 1.5rem 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 8px;
    position: relative;
    transition: all var(--transition-speed) ease;
}

.faq-v2__question-btn:hover {
    background-color: var(--color-light-accent);
    color: var(--color-secondary);
}

.faq-v2__question-btn.is-active {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.faq-v2__answers {
    position: relative;
    overflow: hidden;
    min-height: 400px; /* Added min-height */
}

.faq-v2__answer-pane {
    position: absolute;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    visibility: hidden;
}

.faq-v2__answer-pane.is-active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.faq-v2__answer-image-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.faq-v2__answer-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-v2__answer-pane p {
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
}

.cta-v2 {
    padding: 8rem 0;
    overflow: hidden;
    position: relative;
}

.cta-v2__background {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
}
.cta-v2__background::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(44, 62, 80, 0.7);
}

.cta-v2__content {
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
    color: var(--color-white);
    padding: 4rem;
    position: relative;
    background: rgba(44, 62, 80, 0.3);
    backdrop-filter: blur(5px);
}

.cta-v2__frame {
    position: absolute;
    inset: 2rem;
    width: calc(100% - 4rem);
    height: calc(100% - 4rem);
}
.cta-v2__frame path {
    stroke: var(--color-accent);
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: drawFrame 2s forwards;
    animation-delay: 0.5s;
}
[data-aos="zoom-in"].aos-animate .cta-v2__frame path {
    animation-play-state: running;
}
@keyframes drawFrame {
    to {
        stroke-dashoffset: 0;
    }
}
.cta-v2__title {
    margin-bottom: 1.5rem;
}
.cta-v2 .btn {
    margin-top: 1.5rem;
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}
.cta-v2 .btn:hover {
    background-color: transparent;
    color: var(--color-accent);
}

@media(max-width: 992px) {
    .gallery-v2__layout, .faq-v2__layout {
        grid-template-columns: 1fr;
    }
    .gallery-v2__stage { margin-top: 2rem; }
    .faq-v2__layout { padding: 2rem; }
}

.testimonials-v6 {
    background-color: var(--color-background);
    color: var(--color-text);
    padding: var(--section-padding); 
    min-height: 700px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}
.testimonials-v6__header { text-align: center; margin-bottom: 3rem; }

.testimonials-v6__river-container {
    height: 400px;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.testimonials-v6__river {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.testimonials-v6__river-content {
    display: flex;
    width: fit-content;
    height: 100%;
    animation: scroll-left 250s linear infinite;
}

.testimonials-v6__river--background .testimonials-v6__river-content {
    animation-duration: 350s;
}

.testimonials-v6__river-container:hover .testimonials-v6__river-content {
    animation-play-state: paused;
}

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

.testimonial-item {
    display: flex;
    align-items: center;
    padding: 0 2rem;
    white-space: nowrap;
    transition: all var(--transition-speed) ease;
}

.testimonial-item p {
    margin: 0;
    font-family: var(--font-headings);
    font-size: 2rem;
    font-style: italic;
}

.testimonials-v6__river--foreground .testimonial-item p {
    color: var(--color-text);
}

.testimonials-v6__river--background {
    top: 10%;
    height: 80%;
}

.testimonials-v6__river--background .testimonial-item p {
    font-size: 1.5rem;
    color: var(--color-text);
    opacity: 0.15;
    filter: blur(1px);
}

.testimonials-v6__river--foreground .testimonial-item:hover {
    transform: scale(1.1);
}
.testimonials-v6__river--foreground .testimonial-item:hover p {
    color: var(--color-accent);
}


@media (max-width: 768px) {
    .testimonial-item p {
        font-size: 1.5rem;
    }
    .testimonials-v6__river--background .testimonial-item p {
        font-size: 1rem;
    }
}

.footer-v2 {
    background-color: var(--color-text);
    color: var(--color-background);
    padding: 6rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer-v2__ripple-bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

.footer-v2:hover .footer-v2__ripple-bg::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
}

.footer-v2__ripple-bg::before {
    content: '';
    position: absolute;
    top: var(--ripple-y, 50%);
    left: var(--ripple-x, 50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(176, 137, 104, 0.2) 0%, rgba(176, 137, 104, 0) 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    opacity: 1;
    transition: transform 0.7s ease-out, opacity 0.7s ease-out;
    pointer-events: none;
}

.footer-v2__container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.footer-v2__main {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 3rem;
    padding-bottom: 4rem;
}

.footer-v2__monogram {
    grid-column: 2 / 3;
    width: 100px;
    height: 100px;
    color: var(--color-accent);
}

.footer-v2__nav--left { text-align: right; }
.footer-v2__nav--right { text-align: left; }

.footer-v2__title {
    font-family: var(--font-main);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.5;
    margin-bottom: 1.5rem;
}

.footer-v2__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-v2__link {
    color: var(--color-white);
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 0.25rem;
}

.footer-v2__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--color-accent);
    transition: width var(--transition-speed) ease;
}
.footer-v2__link:hover::after {
    width: 100%;
}

.footer-v2__secondary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-v2__contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.footer-v2__separator {
    width: 1px;
    height: 1rem;
    background-color: rgba(255, 255, 255, 0.2);
}

.footer-v2__list--horizontal {
    flex-direction: row;
}

.footer-v2__bottom {
    padding-top: 2rem;
    text-align: center;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .footer-v2__main {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    .footer-v2__monogram {
        margin: 1rem auto;
        order: 1;
    }
    .footer-v2__nav--left { text-align: center; order: 2; }
    .footer-v2__nav--right { text-align: center; order: 3; }
    
    .footer-v2__secondary {
        flex-direction: column;
        gap: 1.5rem;
    }
    .hero__shape--2
    {
        display: none;
    }
    .process__grid
    {
        display: block;
    }
    .footer-v2__list--horizontal
    {
        flex-direction: column;
    }
}

.about-hero {
    padding: 10rem 0 6rem;
    background-color: var(--color-light-accent);
}

.about-hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.about-hero__title {
    font-size: 4rem;
}

.about-hero__subtitle {
    font-family: var(--font-main);
    font-size: 1.25rem;
    color: var(--color-accent);
    margin-bottom: 2rem;
}

.about-hero__description {
    max-width: 500px;
    line-height: 1.7;
}

.about-hero__visual {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: -10px 10px 30px rgba(44, 62, 80, 0.1);
}

.manifesto {
    position: relative;
    padding: 8rem 0;
    color: var(--color-white);
}

.manifesto__background {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.manifesto__background::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(44, 62, 80, 0.7);
}

.manifesto__container {
    text-align: center;
}

.manifesto__quote {
    font-family: var(--font-headings);
    font-size: 2.5rem;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
    font-style: italic;
}

.manifesto__cite {
    display: block;
    font-family: var(--font-main);
    font-size: 1rem;
    font-style: normal;
    margin-top: 2rem;
    opacity: 0.8;
}

.workshop {
    background-color: var(--color-background);
}
.workshop__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}
.workshop__subtitle {
    margin-top: 1rem;
}

.workshop__layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    background-color: var(--color-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(44, 62, 80, 0.05);
}

.workshop__nav-btn {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 500;
    position: relative;
    transition: all var(--transition-speed) ease;
}

.workshop__nav-btn::after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 50%;
    width: 3px;
    background-color: var(--color-accent);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.workshop__nav-btn:hover,
.workshop__nav-btn.is-active {
    color: var(--color-accent);
}
.workshop__nav-btn.is-active::after {
    transform: scaleY(1);
}

.workshop__pane {
    display: none;
}
.workshop__pane.is-active {
    display: block;
    animation: contentFadeIn 0.6s ease;
}
@keyframes contentFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.workshop__img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.workshop__caption {
    font-style: italic;
    opacity: 0.8;
}

.team {
    background-color: var(--color-light-accent);
}

.team__slider {
    padding-bottom: 3rem;
}

.team__card {
    display: flex;
    gap: 2rem;
    background-color: var(--color-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(44, 62, 80, 0.08);
}

.team__card-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}

.team__card-name {
    margin-bottom: 0.5rem;
}

.team__card-role {
    font-weight: 500;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.team__swiper-pagination {
    bottom: 0 !important;
}

.values-grid__layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    text-align: center;
}

.values-grid__item-number {
    font-family: var(--font-headings);
    font-size: 3rem;
    color: var(--color-accent);
    opacity: 0.3;
}

.values-grid__item-title {
    margin: 1rem 0;
}

@media (max-width: 992px) {
    .about-hero__container { grid-template-columns: 1fr; }
    .about-hero__visual { order: -1; }
    .manifesto__quote { font-size: 2rem; }
    .workshop__layout { grid-template-columns: 1fr; }
    .values-grid__layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .about-hero__title { font-size: 3rem; }
    .team__card { flex-direction: column; text-align: center; }
    .team__card-img { margin: 0 auto; }
}

.about-hero-v2 {
    position: relative;
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.about-hero-v2__bg-image-wrapper {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
    z-index: -1;
}

.about-hero-v2__bg-image {
    width: 100%; height: 100%;
    object-fit: cover;
    opacity: 0.15;
    transform: scale(1.1);
}

.about-hero-v2__container {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 3rem;
}

.about-hero-v2__timeline {
    position: relative;
    height: 100%;
}

.about-hero-v2__timeline-line {
    width: 2px;
    height: 100%;
    background-color: var(--color-accent);
    margin: 0 auto;
    transform-origin: top;
    transform: scaleY(0);
}

.about-hero-v2__title {
    font-size: 4.5rem;
    margin-bottom: 10rem;
    padding-top: 20vh;
}

.about-hero-v2__chapter {
    margin-bottom: 25rem;
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

.about-hero-v2__chapter:last-child {
    margin-bottom: 20vh;
}

.about-hero-v2__chapter.is-visible {
    opacity: 1;
}

.about-hero-v2__chapter-title {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
}

.about-hero-v2__chapter-text {
    max-width: 500px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.timeline-v2 {
    height: 400vh; 
    position: relative;
    background-color: var(--color-background);
}

.timeline-v2__sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}

.timeline-v2__track {
    display: flex;
    height: 100%;
}

.timeline-v2__milestone {
    width: 70vw; 
    flex-shrink: 0; 
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    padding: 0 4%;
    margin-right: 10vw; 
}

.timeline-v2__milestone-year {
    font-family: var(--font-headings);
    font-size: 3rem;
    color: var(--color-accent);
    opacity: 0.3;
}

.timeline-v2__milestone-title {
    font-size: 2.5rem;
    margin: 1rem 0;
}

.timeline-v2__milestone-image-wrapper {
    width: 100%;
    height: 70vh;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(44, 62, 80, 0.15);
}

.timeline-v2__milestone-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .timeline-v2__milestone {
        width: 90vw;
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 5%;
        margin-right: 5vw;
    }

    .timeline-v2__milestone-content {
        text-align: center;
        order: 1;
    }
    
    .timeline-v2__milestone-image-wrapper {
        order: 2;
        height: 50vh;
        max-width: 500px;
        margin: 0 auto;
    }
}

.workshop-v2 {
    background-color: var(--color-light-accent);
}

.workshop-v2__container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.workshop-v2__text-content {
    position: relative;
    padding-bottom: 4rem;
}

.workshop-v2__title {
    text-align: left;
}
.workshop-v2__title::after {
    margin: 0.5rem 0 0;
}

.workshop-v2__text-slider {
    min-height: 200px;
}

.workshop-v2__station-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.workshop-v2__visual-content {
    width: 100%;
    height: 80vh;
    border-radius: 12px;
    overflow: hidden;
}

.workshop-v2__image-slider {
    width: 100%; height: 100%;
}

.workshop-v2__image-slide img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.15);
    transition: transform 8s ease-in-out !important;
}
.swiper-slide-active .workshop-v2__image-slide img {
    transform: scale(1);
}

.workshop-v2__navigation {
    position: absolute;
    bottom: 0; left: 0;
    display: flex;
    gap: 1rem;
}

.workshop-v2__nav-btn {
    width: 50px; height: 50px;
    border-radius: 50%;
    border: 1px solid var(--color-accent);
    position: relative;
    background-color: transparent;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
}

.workshop-v2__nav-btn:hover {
    background-color: rgba(176, 137, 104, 0.1);
}

.workshop-v2__nav-btn::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 10px; height: 10px;
    border-top: 2px solid var(--color-accent);
    border-left: 2px solid var(--color-accent);
}
.workshop-v2__nav-btn--prev::before {
    transform: translate(-30%, -50%) rotate(-45deg);
}
.workshop-v2__nav-btn--next::before {
    transform: translate(-70%, -50%) rotate(135deg);
}

@media (max-width: 992px) {
    .timeline-v2__milestone, .workshop-v2__container {
        grid-template-columns: 1fr;
    }
    .timeline-v2__milestone-image-wrapper {
        height: 50vh;
    }
    .workshop-v2__visual-content {
        order: -1;
        height: 60vh;
    }
}


.workshop-v4 {
    background-color: var(--color-background);
    text-align: center;
}
.workshop-v4__subtitle { max-width: 400px; margin: 1rem auto 0; }
.workshop-v4__interactive-area {
    width: 100%;
    height: 70vh;
    min-height: 500px;
    margin-top: 3rem;
    position: relative;
    cursor: ew-resize;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.workshop-v4__layer {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    overflow: hidden;
}
.workshop-v4__layer img {
    width: 100%; height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0; left: 0;
}
.workshop-v4__layer--fired {
    clip-path: polygon(var(--clip-pos, 50%) 0, 100% 0, 100% 100%, var(--clip-pos, 50%) 100%);
}
.workshop-v4__label {
    position: absolute;
    bottom: 2rem;
    background-color: rgba(44, 62, 80, 0.7);
    color: var(--color-white);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.workshop-v4__interactive-area:hover .workshop-v4__label { opacity: 1; }
.workshop-v4__layer--raw .workshop-v4__label { left: 2rem; }
.workshop-v4__layer--fired .workshop-v4__label { right: 2rem; }

.team-v3 {
    background-color: var(--color-light-accent);
}
.team-v3__container {
    padding-top: 4rem;
    padding-bottom: 4rem;
}
.team-v3__header { text-align: center; margin-bottom: 4rem; }
.team-v3__collage {
    position: relative;
    height: 60vh;
    min-height: 500px;
}
.team-v3__member-card {
    position: absolute;
    width: 30%;
    min-width: 280px;
    cursor: pointer;
}
.team-v3__member-card img {
    width: 100%;
    display: block;
    filter: grayscale(1);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.team-v3__member-info {
    position: absolute;
    bottom: -20px;
    left: 20px;
    background-color: var(--color-white);
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.team-v3__member-card:hover { z-index: 10; }
.team-v3__member-card:hover img {
    filter: grayscale(0);
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.team-v3__member-card:hover .team-v3__member-info {
    opacity: 1;
    transform: translateY(0);
}
.team-v3__member-card--1 { top: 0; left: 10%; }
.team-v3__member-card--2 { top: 20%; left: 50%; transform: translateX(-50%); z-index: 5;}
.team-v3__member-card--3 { top: 5%; right: 10%; }

.values-v3 {
    position: relative;
}
.values-v3__sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}
.values-v3__slide {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s;
}
.values-v3__slide.is-active {
    opacity: 1;
    visibility: visible;
}
.values-v3__bg-text {
    position: absolute;
    font-size: 25vw;
    font-family: var(--font-headings);
    font-weight: 700;
    color: var(--color-light-accent);
    z-index: -1;
    text-transform: uppercase;
}
.values-v3__content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.values-v3__image-wrapper {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
}
.values-v3__image-wrapper img {
    width: 100%; height: 100%; object-fit: cover;
}
.values-v3__text-block h3 { font-size: 2.5rem; margin-bottom: 1rem; }
.values-v3__text-block p { max-width: 400px; line-height: 1.7; }

@media (max-width: 992px) {
    .team-v3__collage { height: auto; position: static; display: flex; flex-direction: column; gap: 2rem; align-items: center;}
    .team-v3__member-card { position: static; transform: none !important; width: 80%; max-width: 350px;}
    .values-v3__content-block { grid-template-columns: 1fr; }
    .values-v3__image-wrapper { max-width: 400px; margin: 0 auto; }
    .values-v3__text-block { text-align: center; }
}

@media (max-width: 992px) {
    .about-hero-v2 {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }
    .about-hero-v2__title {
        font-size: 3.5rem;
        padding-top: 15vh;
        margin-bottom: 8rem;
    }
    .about-hero-v2__chapter {
        margin-bottom: 20rem;
    }
}

@media (max-width: 768px) {
    .about-hero-v2 {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
    .about-hero-v2__container {
        grid-template-columns: 40px 1fr;
        gap: 1.5rem;
    }
    .about-hero-v2__title {
        font-size: 2.8rem;
        padding-top: 10vh;
        margin-bottom: 6rem;
    }
    .about-hero-v2__chapter {
        margin-bottom: 15rem;
    }
     .about-hero-v2__chapter:last-child {
        margin-bottom: 10vh;
    }
    .about-hero-v2__chapter-text {
        font-size: 1rem;
    }
    .footer-v2__contact
    {
        flex-direction: column;
    }
    .timeline-v2__milestone
    {
        padding: 0 2%;
    }
}

@media (max-width: 992px) {
    .workshop-v4__label {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    .workshop-v4__layer--raw .workshop-v4__label { left: 1rem; }
    .workshop-v4__layer--fired .workshop-v4__label { right: 1rem; }
    
    .team-v3__collage { 
        height: auto; 
        position: static; 
        display: flex; 
        flex-direction: column; 
        gap: 8rem; 
        align-items: center;
        padding-top: 4rem; 
    }
    .team-v3__member-card { 
        position: static; 
        transform: none !important; 
        width: 80%; 
        max-width: 350px;
        opacity: 0.5;
        transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .team-v3__member-card.is-in-view {
        opacity: 1;
        transform: scale(1.05) !important;
    }
    .team-v3__member-card.is-in-view img {
        filter: grayscale(0);
        box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    }
    .team-v3__member-card.is-in-view .team-v3__member-info {
        opacity: 1;
        transform: translateY(0);
    }
    .team-v3__member-info
    {
        position: unset;
    }
}

@media (max-width: 768px) {
    .workshop-v4__interactive-area {
        height: 60vh;
        min-height: 400px;
    }
    .workshop-v4__label { display: none; }
}

.services-hero-v2 {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.services-hero-v2__bg {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    background-image: url('images/46.webp');
}
.services-hero-v2__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(253, 251, 248, 0.1) 0%, rgba(44, 62, 80, 0.7) 100%);
}
.services-hero-v2__title {
    font-size: 4rem;
    color: var(--color-white);
}
.services-hero-v2__subtitle {
    font-size: 1.2rem;
    color: var(--color-white);
    opacity: 0.9;
    max-width: 500px;
    margin: 1rem auto 0;
}
.services-hotspot {
    position: absolute;
}
.services-hotspot__btn {
    width: 20px;
    height: 20px;
    background-color: var(--color-white);
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}
.services-hotspot__tooltip {
    position: absolute;
    bottom: 150%;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    background-color: var(--color-white);
    color: var(--color-text);
    padding: 1rem;
    border-radius: 8px;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
.services-hotspot:hover .services-hotspot__tooltip {
    opacity: 1;
    visibility: visible;
    bottom: 170%;
}

.philosophy-choice {
    background-color: var(--color-light-accent);
}
.philosophy-choice__container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}
.philosophy-choice__image-wrapper {
    border-radius: 12px;
    overflow: hidden;
}
.philosophy-choice__image-wrapper img {
    width: 100%;
    display: block;
}

.comparison-table { background-color: var(--color-background); }
.comparison-table__grid {
    display: grid;
    grid-template-columns: 1fr repeat(3, 1.5fr);
    gap: 1px;
    background-color: var(--color-light-accent);
    border: 1px solid var(--color-light-accent);
    border-radius: 12px;
    overflow: hidden;
}
.comparison-table__header, .comparison-table__label, .comparison-table__cell {
    background-color: var(--color-white);
    padding: 1.5rem;
}
.comparison-table__header { text-align: center; }
.comparison-table__label { font-weight: 500; display: flex; align-items: center; }
.comparison-table__cell { text-align: center; }
.comparison-table__value {
    display: block;
    font-size: 1.5rem;
    font-family: var(--font-headings);
    margin-bottom: 0.5rem;
}

.showcase-gallery { background-color: var(--color-text); }
.showcase-gallery .section__title { color: var(--color-white); }
.showcase-gallery .section__title::after { background-color: var(--color-accent); }
.showcase-gallery__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}
.showcase-gallery__item {
    aspect-ratio: 1/1;
    border-radius: 8px;
    overflow: hidden;
}
.showcase-gallery__item img {
    width: 100%; height: 100%; object-fit: cover;
}

.services-faq { background-color: var(--color-light-accent); }
.services-faq__container { max-width: 800px; }
.services-faq__item { border-bottom: 1px solid var(--color-accent); }
.services-faq__question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.services-faq__question::after {
    content: '+';
    font-size: 2rem;
    color: var(--color-accent);
    transition: transform 0.3s ease;
}
.services-faq__item.is-open .services-faq__question::after {
    transform: rotate(45deg);
}
.services-faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}
.services-faq__answer p { padding-bottom: 1.5rem; }

@media(max-width: 992px) {
    .philosophy-choice__container { grid-template-columns: 1fr; }
    .comparison-table__grid { grid-template-columns: 1fr 1fr; }
    .showcase-gallery__grid { grid-template-columns: repeat(3, 1fr); }
}
@media(max-width: 768px) {
    .services-hero-v2__title { font-size: 2.8rem; }
    .comparison-table__grid { display: block; }
    .showcase-gallery__grid { grid-template-columns: 1fr 1fr; }
    .services-hotspot
    {
        display: none;
    }
}

.hotspot-f1
{
    top: 45%; left: 30%;
}
.hotspot-f2
{
    top: 70%; left: 55%;
}
.hotspot-f3
{
    top: 25%; left: 65%;
}

.section__title-te
{
    text-align: center;
}

.customizer {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    min-height: 100vh;
}

.customizer__stage {
    background-color: var(--color-light-accent);
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    height: 100vh;
}

.customizer__svg-wrapper {
    width: 100%;
    max-width: 600px;
}

#TeasetSVG g {
    transition: opacity 0.4s ease;
}

.svg-teaset__body {
    transition: fill 0.4s ease;
}

.customizer__controls {
    background-color: var(--color-background);
    padding: 4rem;
}

.customizer__header {
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--color-light-accent);
    padding-bottom: 2rem;
}
.customizer__title { font-size: 2.5rem; }
.customizer__subtitle { font-size: 1.1rem; }

.customizer__option-group {
    margin-bottom: 2.5rem;
}

.customizer__option-title {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.customizer__choices {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.customizer__choice-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--color-light-accent);
    font-weight: 500;
    transition: all 0.3s ease;
}
.customizer__choice-btn:hover {
    background-color: var(--color-light-accent);
    border-color: var(--color-accent);
}
.customizer__choice-btn.is-active {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: var(--color-white);
}

.customizer__choice-btn--color {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    border-width: 2px;
}
.customizer__choice-btn--color.is-active {
    box-shadow: 0 0 0 3px var(--color-secondary);
}

.color-swatch--porcelain { background-color: #FDFBF8; }
.color-swatch--stone { background-color: #A9A9A9; }
.color-swatch--charcoal { background-color: #36454F; }
.color-swatch--sage { background-color: #B2AC88; }
.color-swatch--blush { background-color: #E6BFB5; }

.customizer__choice-btn--pattern {
    width: 60px;
    height: 60px;
    padding: 0.5rem;
    border-radius: 8px;
}
.customizer__choice-btn--pattern svg {
    width: 100%;
    height: 100%;
}

.customizer__summary {
    border-top: 1px solid var(--color-light-accent);
    padding-top: 2rem;
    margin-top: 3rem;
}
.customizer__summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
    padding: 0.5rem 0;
}
.customizer__summary-item span:first-child {
    font-weight: 500;
}

.customizer__cta-btn {
    width: 100%;
    margin-top: 2rem;
}

@media (max-width: 1024px) {
    .customizer {
        grid-template-columns: 1fr;
    }
    .customizer__stage {
        position: static;
        height: auto;
        min-height: 60vh;
    }
    .customizer__controls {
        padding: 2rem;
    }
}

.service-detail-page .header {
    background-color: transparent;
    position: absolute;
}
.bespoke-journey {
    background-color: #1a2129;
    color: var(--color-white);
}
.bespoke-scene {
    position: relative;
    height: 100vh;
    min-height: 700px;
}

/* Hero */
.bespoke-hero {
    display: flex;
    align-items: center;
    justify-content: center;
}
.bespoke-hero__light-orb {
    position: absolute;
    width: 200px; height: 200px;
    background: radial-gradient(circle, var(--color-accent) 0%, transparent 70%);
    filter: blur(50px);
    animation: pulse-light 5s infinite ease-in-out;
}
@keyframes pulse-light {
    0%, 100% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}
.bespoke-hero__title {
    font-size: 4rem;
    position: relative;
}

/* Dialogue */
.bespoke-dialogue {
    height: 150vh;
}
.bespoke-dialogue__container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}
.bespoke-dialogue__line {
    font-family: var(--font-headings);
    font-size: 3rem;
    opacity: 0;
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
}

/* Sketchbook */
.bespoke-sketchbook {
    height: 300vh;
}
.bespoke-sketchbook__sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
}
.bespoke-sketchbook__track {
    display: flex;
    height: 100%;
    width: 300%;
}
.bespoke-sketchbook__page {
    width: 100vw;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5%;
    gap: 4rem;
}
.bespoke-sketchbook__page img {
    width: 60%;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.bespoke-sketchbook__caption {
    width: 30%;
}
.bespoke-sketchbook__caption h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--color-accent); }

/* Materials */
.bespoke-materials {
    height: 150vh;
}
.bespoke-materials__container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    perspective: 1000px;
}
.bespoke-materials__card {
    position: sticky;
    top: 30vh;
    width: 300px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    color: var(--color-white);
}
.bespoke-materials__card img {
    width: 100%; height: 100%;
    object-fit: cover;
    position: absolute;
    z-index: -1;
}
.bespoke-materials__card h3 {
    position: absolute;
    bottom: 1rem; left: 1.5rem;
    font-size: 2rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Creation */
.bespoke-creation {
    position: relative;
    display: flex;
    align-items: center;
}
.bespoke-creation__bg-animation {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
}
.bespoke-creation__bg-animation img {
    width: 100%; height: 100%;
    object-fit: cover;
}
.bespoke-creation__text-mask {
    position: relative;
    z-index: 2;
    font-family: var(--font-headings);
    font-size: 2.5rem;
    line-height: 1.5;
    background-color: #1a2129;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
}

@media(max-width: 992px) {
    .bespoke-sketchbook__page { flex-direction: column; text-align: center; }
    .bespoke-sketchbook__page img { width: 80%; }
    .bespoke-sketchbook__caption { width: 80%; margin-top: 2rem; }
    .bespoke-materials__container { flex-direction: column; gap: 4rem; justify-content: flex-start; padding-top: 10vh; }
    .bespoke-materials__card { position: static; }
}

@media(max-width: 768px) {
    .bespoke-hero__title { font-size: 2.8rem; }
    .bespoke-dialogue__line { font-size: 2rem; }
    .bespoke-creation__text-mask { font-size: 1.8rem; }
}


.legal {
    padding-top: 8rem;
    padding-bottom: 6rem;
    background-color: var(--color-background);
}
.legal__container {
    max-width: 800px;
}
.legal h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.legal h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--color-light-accent);
}
.legal p {
    line-height: 1.7;
    margin-bottom: 1rem;
}
.legal__last-updated {
    font-style: italic;
    opacity: 0.7;
    margin-bottom: 3rem;
}

.ds
{
    display: none;
}

.svg-teaset__shape {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s;
}
.svg-teaset__shape.is-active {
    opacity: 1;
    visibility: visible;
}

.svg-teaset__body--stroked {
    stroke-width: 5px;
    stroke-linecap: round;
    fill: none;
}
.svg-teaset__body--modern-handle {
    stroke-linejoin: bevel;
}

.svg-teaset__pattern {
    opacity: 0;
    transition: opacity 0.4s ease;
}
.svg-teaset__pattern.is-active {
    opacity: 1;
}

#pattern-sakura circle { fill: #B08968; }
#pattern-waves path { stroke: #7F5539; stroke-width: 1.5px; fill: none; }