:root {
    --bg-color: #f6f1ea;
    --text-main: #362e25;
    --text-muted: #73675a;
    --gold: #b39058;
    --font-head: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

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

.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.ambient-bg.active {
    opacity: 1;
}

.ambient-wrap {
    position: absolute;
    will-change: transform;
}

.ambient-shape {
    filter: blur(70px);
    opacity: 0.95;
    border-radius: 50%;
}

.shape-peach {
    width: 50vw;
    height: 50vw;
    background: rgba(245, 195, 175, 0.85);
}

.shape-gold-wave {
    width: 60vw;
    height: 30vw;
    background: rgba(179, 144, 88, 0.7);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: rotate(25deg);
}

.shape-pink {
    width: 45vw;
    height: 45vw;
    background: rgba(230, 190, 195, 0.85);
}

.shape-white-wave {
    width: 80vw;
    height: 40vw;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50% 50% 50% 50% / 60% 40% 60% 40%;
    transform: rotate(-15deg);
}

.shape-dark-gold {
    width: 40vw;
    height: 40vw;
    background: rgba(150, 110, 60, 0.5);
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }

.section-title { 
    font-size: 3.5rem; 
    margin-bottom: 3.5rem; 
    color: var(--text-main); 
    font-style: italic;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 1.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 15'%3E%3Cpath d='M0,7.5 C20,15 30,0 50,7.5 C70,15 80,0 100,7.5' fill='none' stroke='%23b39058' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.7;
}

.gold-text {
    color: var(--gold) !important;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    transition: all 0.4s ease;
    font-weight: 500;
}

.btn--elegant {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(54, 46, 37, 0.2);
    padding: 1rem 3.5rem;
    font-size: 0.8rem;
    letter-spacing: 3px;
    border-radius: 50px;
    position: relative;
    z-index: 2;
}

.btn--elegant:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(179, 144, 88, 0.05);
}

.btn--light-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 3.5rem;
    font-size: 0.8rem;
    letter-spacing: 3px;
    border-radius: 50px;
    position: relative;
    z-index: 2;
}

.btn--light-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(179, 144, 88, 0.1);
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    background: transparent;
    z-index: 1000;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 1rem 2rem;
    background: rgba(246, 241, 234, 0.95);
    backdrop-filter: blur(10px);
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
    padding: 10px;
}

.hamburger span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--text-main);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(246, 241, 234, 0.98);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-menu__nav a {
    font-family: var(--font-head);
    font-size: 3rem;
    font-style: italic;
    transition: color 0.3s ease;
}

.mobile-menu__nav a:hover {
    color: var(--gold);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 2rem;
    z-index: 1;
}

.hero__logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
    padding: 2rem;
    text-align: center;
    gap: 3rem;
}

.hero__logo-large {
    width: 50%;
    max-width: 450px;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-main);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(54, 46, 37, 0.2);
    position: relative;
    overflow: hidden;
}

.scroll-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--text-main);
    animation: scrollDrop 2s infinite cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes scrollDrop {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(200%); }
}

.services {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.services__wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.services__grid {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 1rem 0 2rem;
    width: 100%;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.services__grid::-webkit-scrollbar {
    display: none;
}

.services__btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(246, 241, 234, 0.9);
    border: 1px solid rgba(179, 144, 88, 0.3);
    color: var(--text-main);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.services__btn svg {
    width: 24px;
    height: 24px;
    fill: var(--text-main);
    transition: fill 0.3s ease;
}

.services__btn:hover {
    border-color: var(--gold);
    background: #fff;
}

.services__btn:hover svg {
    fill: var(--gold);
}

.services__btn--prev {
    left: -25px;
}

.services__btn--next {
    right: -25px;
}

.services__pagination {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 1rem;
}

.services__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(54, 46, 37, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.services__dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

.service-image-wrapper {
    flex: 0 0 calc(33.333% - 1.333rem);
    scroll-snap-align: start;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(54, 46, 37, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #fff;
    display: flex; 
    flex-direction: column;
}

.service-image-wrapper:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(179, 144, 88, 0.2);
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.portfolio {
    padding: 2rem 2rem 6rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.portfolio__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.portfolio__grid img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.info-section {
    padding: 2rem 2rem 6rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.accordion-item {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    overflow: hidden;
}

.accordion-item summary {
    padding: 1.5rem 2rem;
    font-size: 1.3rem;
    font-family: var(--font-head);
    font-style: italic;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-item summary::-webkit-details-marker {
    display: none;
}

.accordion-item summary::after {
    content: '+';
    font-family: var(--font-body);
    font-style: normal;
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.accordion-item[open] summary::after {
    content: '−';
}

.accordion-content {
    padding: 0 2rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    border-top: 1px solid rgba(54, 46, 37, 0.05);
    margin-top: 0.5rem;
    padding-top: 1rem;
}

.accordion-content p {
    margin-bottom: 0.8rem;
}

.contact-highlight {
    background: linear-gradient(135deg, #2c251f 0%, #1a1511 100%);
    color: #fff;
    padding: 8rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-highlight::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(179, 144, 88, 0.07) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.contact-highlight::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(179, 144, 88, 0.12), transparent);
    transform: skewX(-25deg);
    animation: bgShimmer 6s infinite;
    pointer-events: none;
    z-index: 1;
}

.contact-highlight__wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.contact-divider {
    width: 40px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto;
    opacity: 0.5;
}

.contact-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 1rem;
}

.contact-large {
    font-family: var(--font-head);
    font-size: 4.5rem;
    font-style: italic;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: #fff;
}

.contact-sub {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

.contact-huge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.sheen-text {
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.8) 20%,
        var(--gold) 50%,
        rgba(255, 255, 255, 0.8) 80%
    );
    background-size: 200% auto;
    color: #fff;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to { background-position: 200% center; }
}

.footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    background: #1a1511;
}

.reveal-up { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.reveal-up.active { opacity: 1; transform: translateY(0); }

@media (max-width: 992px) {
    .service-image-wrapper {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .section-title { font-size: 2.8rem; }
    .contact-large { font-size: 3.5rem; }
    .contact-huge { font-size: 2.8rem; }
    .accordion-item summary { padding: 1.2rem 1.5rem; font-size: 1.1rem; }
    .hero__logo-large { max-width: 320px; }
    .btn--elegant, .btn--light-outline { padding: 1rem 2.5rem; }
    .mobile-menu__nav a { font-size: 2.5rem; }
    .services__btn { display: none; }
    .services__wrapper { padding: 0; }
    .accordion { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    .service-image-wrapper {
        flex: 0 0 85%;
    }
}

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

.materials-grid {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.materials-grid img {
    width: calc(50% - 0.75rem);
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

@media (max-width: 576px) {
    .materials-grid {
        flex-direction: column;
        gap: 1rem;
    }
    .materials-grid img {
        width: 100%;
    }
}