@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Nunito+Sans:wght@300;400;600;700&family=Fira+Code:wght@400;500&display=swap');

:root {
    --color-warm-linen: #FDF8F4;
    --color-soft-parchment: #F8F3EE;
    --color-antique-gold: #B87333;
    --color-sepia-ochre: #C9A962;
    --color-deep-walnut: #3D3028;
    --color-warm-charcoal: #2D2622;
    --color-warm-taupe: #5A4D42;
    --color-muted-sand: #A89B8C;
    --color-cream-white: #FFFBF7;
}

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

strong, p {
    color: inherit;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    background-color: var(--color-warm-linen);
    color: var(--color-warm-taupe);
    line-height: 1.8;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--color-deep-walnut);
    font-weight: 600;
    letter-spacing: 0.03em;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.warm-linen-bg {
    background-color: var(--color-warm-linen);
}

.soft-parchment-bg {
    background-color: var(--color-soft-parchment);
}

.warm-charcoal-bg {
    background-color: var(--color-warm-charcoal);
}

.text-warm-linen {
    color: var(--color-warm-linen);
}

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

.text-sepia-ochre {
    color: var(--color-sepia-ochre);
}

.text-deep-walnut {
    color: var(--color-deep-walnut);
}

.text-warm-charcoal {
    color: var(--color-warm-charcoal);
}

.text-warm-taupe {
    color: var(--color-warm-taupe);
}

.text-muted-sand {
    color: var(--color-muted-sand);
}

.fira-code {
    font-family: 'Fira Code', monospace;
}

.cormorant {
    font-family: 'Cormorant Garamond', serif;
}

.nunito {
    font-family: 'Nunito Sans', sans-serif;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--color-antique-gold), var(--color-sepia-ochre));
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(184, 115, 51, 0.25);
    transition: all 0.25s ease-out;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(184, 115, 51, 0.35);
}

.btn-primary:active {
    transform: scale(0.98);
    filter: brightness(0.95);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: transparent;
    color: var(--color-deep-walnut);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.02em;
    border-radius: 40px;
    border: 2px solid var(--color-deep-walnut);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease-out;
    white-space: nowrap;
}

.btn-secondary:hover {
    border-color: var(--color-antique-gold);
    color: var(--color-antique-gold);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--color-deep-walnut);
    color: var(--color-warm-linen);
}

.btn-dark:hover {
    background: var(--color-warm-charcoal);
}

.cookie-consent-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    max-width: 420px;
    background: var(--color-cream-white);
    backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(184, 115, 51, 0.15);
    border-radius: 24px;
    padding: 24px;
    box-shadow: 0 16px 64px rgba(61, 48, 40, 0.12);
    z-index: 9999;
    display: none;
}

.cookie-consent-banner.show {
    display: block;
    animation: slideUp 0.4s ease-out;
}

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

.cookie-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--color-deep-walnut);
    margin-bottom: 8px;
}

.cookie-text {
    font-size: 13px;
    color: var(--color-warm-taupe);
    margin-bottom: 16px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--color-antique-gold), var(--color-sepia-ochre));
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 13px;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease-out;
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 115, 51, 0.25);
}

.cookie-btn-decline {
    flex: 1;
    min-width: 120px;
    padding: 12px 20px;
    background: transparent;
    color: var(--color-warm-taupe);
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    border-radius: 24px;
    border: 1px solid rgba(90, 77, 66, 0.2);
    cursor: pointer;
    transition: all 0.25s ease-out;
}

.cookie-btn-decline:hover {
    background: rgba(90, 77, 66, 0.05);
}

.cookie-link {
    color: var(--color-antique-gold);
    text-decoration: none;
    font-weight: 600;
}

.cookie-link:hover {
    text-decoration: underline;
}

.header {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: auto;
    max-width: 880px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(253, 248, 244, 0.97);
    backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(184, 115, 51, 0.15);
    border-radius: 48px;
    box-shadow: 0 8px 40px rgba(61, 48, 40, 0.08), 0 24px 72px rgba(184, 115, 51, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    padding: 16px 32px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled .header-inner {
    padding: 10px 24px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-logo svg {
    width: 36px;
    height: 36px;
}

.header-logo-text {
    display: flex;
    flex-direction: column;
}

.header-logo-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-deep-walnut);
    letter-spacing: 0.03em;
}

.header-logo-sub {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 9px;
    color: var(--color-muted-sand);
    letter-spacing: 0.1em;
}

.header-nav {
    display: flex;
    gap: 32px;
}

.header-nav a {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-warm-taupe);
    text-decoration: none;
    letter-spacing: 0.02em;
    position: relative;
    transition: color 0.25s ease;
}

.header-nav a:hover {
    color: var(--color-antique-gold);
}

.header-nav a::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-antique-gold);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.25s ease;
}

.header-nav a:hover::before {
    opacity: 1;
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-phone {
    font-family: 'Fira Code', monospace;
    font-size: 11px;
    color: var(--color-antique-gold);
}

.header-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, var(--color-antique-gold), var(--color-sepia-ochre));
    color: white;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.02em;
    border-radius: 40px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(184, 115, 51, 0.25);
    transition: all 0.25s ease-out;
}

.header-btn:hover {
    box-shadow: 0 8px 28px rgba(184, 115, 51, 0.35);
    transform: translateY(-2px);
}

.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(253, 248, 244, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(184, 115, 51, 0.12);
    z-index: 1000;
    height: 64px;
    padding: 0 20px;
}

.mobile-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.mobile-logo svg {
    width: 28px;
    height: 28px;
    color: var(--color-antique-gold);
}

.mobile-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-call-btn {
    padding: 8px 16px;
    background: rgba(184, 115, 51, 0.08);
    color: var(--color-antique-gold);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 12px;
    border-radius: 24px;
    text-decoration: none;
}

.mobile-menu-btn {
    width: 44px;
    height: 44px;
    background: rgba(184, 115, 51, 0.1);
    border-radius: 16px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-antique-gold);
}

.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(253, 248, 244, 0.99);
    backdrop-filter: blur(24px);
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 80px;
}

.mobile-overlay.show {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.mobile-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(184, 115, 51, 0.1);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-close-btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-deep-walnut);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-top: 40px;
}

.mobile-nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-deep-walnut);
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpItem 0.4s ease-out forwards;
}

.mobile-nav a:nth-child(1) { animation-delay: 0.1s; }
.mobile-nav a:nth-child(2) { animation-delay: 0.17s; }
.mobile-nav a:nth-child(3) { animation-delay: 0.24s; }
.mobile-nav a:nth-child(4) { animation-delay: 0.31s; }
.mobile-nav a:nth-child(5) { animation-delay: 0.38s; }
.mobile-nav a:nth-child(6) { animation-delay: 0.45s; }

@keyframes slideUpItem {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-nav a + a::before {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--color-antique-gold);
    margin: 0 auto;
    position: relative;
    top: -12px;
}

.mobile-contact-info {
    margin-top: 48px;
    text-align: center;
    opacity: 0;
    animation: fadeIn 0.4s ease-out 0.6s forwards;
}

.mobile-contact-phone {
    font-family: 'Fira Code', monospace;
    font-size: 14px;
    color: var(--color-antique-gold);
    margin-bottom: 8px;
}

.mobile-contact-address {
    font-size: 13px;
    color: var(--color-muted-sand);
}

.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 120px 80px 100px;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-blob {
    position: absolute;
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
    filter: blur(100px);
    animation: floatBlob 30s ease-in-out infinite alternate;
}

.hero-blob-1 {
    width: 500px;
    height: 500px;
    top: -40px;
    right: 10%;
    background: radial-gradient(rgba(184, 115, 51, 0.12) 0%, rgba(201, 169, 98, 0.06) 40%, transparent 70%);
}

.hero-blob-2 {
    width: 600px;
    height: 600px;
    bottom: -60px;
    left: 20%;
    background: radial-gradient(rgba(201, 169, 98, 0.1) 0%, rgba(184, 115, 51, 0.05) 50%, transparent 80%);
    border-radius: 40% 60% 30% 70% / 60% 40% 50% 50%;
    animation-delay: -5s;
    animation-duration: 35s;
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(0.9);
    }
    100% {
        transform: translate(60px, 40px) scale(1.1);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 48px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
}

.hero-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-vase {
    margin-bottom: 24px;
    animation: scaleIn 0.4s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.hero-title {
    font-size: 56px;
    line-height: 0.88;
    color: var(--color-deep-walnut);
    margin-bottom: 20px;
    max-width: 480px;
    animation: clipReveal 0.7s ease-out;
}

@keyframes clipReveal {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0% 0 0);
    }
}

.hero-subtitle {
    font-size: 17px;
    color: #7A6B62;
    line-height: 1.8;
    max-width: 440px;
    margin-bottom: 32px;
    animation: fadeIn 0.6s ease-out 0.4s both;
}

.hero-markers {
    display: flex;
    gap: 8px;
    margin-bottom: 32px;
}

.hero-marker {
    width: 8px;
    height: 8px;
    background: var(--color-antique-gold);
    border-radius: 50%;
    filter: drop-shadow(0 4px 12px rgba(184, 115, 51, 0.25));
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    animation: scaleIn 0.6s ease-out 0.6s both;
}

.hero-gallery {
    position: relative;
    height: 500px;
}

.hero-photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    height: 100%;
    animation: scaleInGallery 0.8s ease-out;
}

@keyframes scaleInGallery {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-photo-main {
    grid-row: span 2;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.hero-photo-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
}

.hero-photo {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
}

.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(184, 115, 51, 0.08);
    border-top: 3px solid var(--color-antique-gold);
    border-radius: 20px;
    padding: 16px 20px;
    box-shadow: 0 16px 48px rgba(61, 48, 40, 0.06);
    animation: fadeInCard 0.6s ease-out;
}

.hero-card-1 {
    top: 40px;
    right: -20px;
}

.hero-card-2 {
    bottom: 60px;
    right: -20px;
}

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

.hero-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-deep-walnut);
}

.hero-card-value {
    font-family: 'Fira Code', monospace;
    font-size: 11px;
    color: var(--color-antique-gold);
}

.section {
    padding: 120px 80px;
    position: relative;
}

.section-title {
    font-size: 44px;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--color-warm-taupe);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.services-slider {
    position: relative;
    overflow: hidden;
    padding: 0 80px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 50%;
    border: 1px solid rgba(184, 115, 51, 0.1);
    box-shadow: 0 4px 16px rgba(61, 48, 40, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background: var(--color-antique-gold);
    border-color: var(--color-antique-gold);
    box-shadow: 0 8px 24px rgba(184, 115, 51, 0.2);
}

.slider-arrow:hover svg {
    stroke: white;
}

.slider-arrow svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-antique-gold);
    stroke-width: 2;
}

.slider-arrow-prev {
    left: 16px;
}

.slider-arrow-next {
    right: 16px;
}

.slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s ease;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 20px 0;
}

.slider-track::-webkit-scrollbar {
    display: none;
}

.service-card {
    flex-shrink: 0;
    width: 340px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    border: 1px solid rgba(184, 115, 51, 0.08);
    border-top: 3px solid var(--color-antique-gold);
    padding: 28px;
    scroll-snap-align: start;
    box-shadow: 0 16px 48px rgba(61, 48, 40, 0.06);
    transition: all 0.25s ease;
}

.service-card:hover {
    box-shadow: 0 20px 56px rgba(184, 115, 51, 0.12);
    transform: translateY(-4px);
    border-color: rgba(184, 115, 51, 0.15);
}

.service-icon {
    margin-bottom: 20px;
}

.service-icon svg {
    width: 52px;
    height: 52px;
    stroke: var(--color-antique-gold);
    stroke-width: 1.5;
    fill: none;
}

.service-title {
    font-size: 20px;
    margin-bottom: 8px;
}

.service-desc {
    font-size: 14px;
    color: #7A6B62;
    line-height: 1.65;
    margin-bottom: 16px;
}

.service-price {
    font-family: 'Fira Code', monospace;
    font-size: 12px;
    color: var(--color-antique-gold);
    margin-bottom: 12px;
}

.service-decor {
    height: 3px;
    width: 40px;
    background: linear-gradient(90deg, var(--color-antique-gold), var(--color-sepia-ochre));
    border-radius: 3px;
}

.split-section {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 0;
    min-height: 560px;
}

.split-image {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-vase {
    margin-bottom: 24px;
}

.about-title {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-warm-taupe);
    margin-bottom: 16px;
}

.about-decor {
    width: 60px;
    height: 1px;
    background: rgba(184, 115, 51, 0.15);
    margin: 20px 0;
}

.process-section {
    padding: 0 80px;
}

.process-cards {
    display: flex;
    gap: 24px;
    margin-top: 48px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
}

.process-card {
    flex-shrink: 0;
    width: 300px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-radius: 28px;
    border-top: 3px solid var(--color-sepia-ochre);
    box-shadow: 0 20px 60px rgba(61, 48, 40, 0.06);
    padding: 28px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 28px 80px rgba(61, 48, 40, 0.08);
    background: white;
    z-index: 10;
}

.process-icon {
    margin-bottom: 16px;
}

.process-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--color-sepia-ochre);
    stroke-width: 1.5;
    fill: none;
    transition: stroke 0.25s ease;
}

.process-card:hover .process-icon svg {
    stroke: var(--color-antique-gold);
}

.process-title {
    font-size: 17px;
    margin-bottom: 8px;
}

.process-text {
    font-size: 14px;
    color: var(--color-warm-taupe);
    line-height: 1.65;
}

.process-decor {
    width: 40px;
    height: 1px;
    background: rgba(184, 115, 51, 0.15);
    margin-top: 12px;
}

.advantages-section {
    background: var(--color-warm-charcoal);
    padding: 100px 80px;
}

.advantages-section .section-title,
.advantages-section .section-subtitle {
    color: var(--color-warm-linen);
}

.advantages-section .section-subtitle {
    color: rgba(253, 248, 244, 0.7);
}

.advantage-card {
    max-width: 900px;
    margin: 0 auto 48px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-radius: 28px;
    border: 1px solid rgba(184, 115, 51, 0.08);
    box-shadow: 0 20px 60px rgba(61, 48, 40, 0.06);
    overflow: hidden;
    transition: all 0.3s ease;
}

.advantage-card:hover {
    box-shadow: 0 28px 80px rgba(184, 115, 51, 0.1);
    transform: translateY(-4px);
    z-index: 10;
}

.advantage-card::before {
    content: '';
    display: block;
    height: 4px;
    background: linear-gradient(90deg, var(--color-antique-gold), var(--color-sepia-ochre));
}

.advantage-inner {
    display: flex;
    align-items: flex-start;
    padding: 0;
}

.advantage-icon {
    padding: 32px;
    flex-shrink: 0;
}

.advantage-icon svg {
    width: 56px;
    height: 56px;
    stroke: var(--color-antique-gold);
    stroke-width: 1.5;
    fill: none;
}

.advantage-content {
    padding: 32px 48px 32px 0;
    flex: 1;
}

.advantage-title {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--color-deep-walnut);
}

.advantage-text {
    font-size: 14px;
    color: #7A6B62;
    line-height: 1.65;
}

.advantage-decor {
    width: 30px;
    height: 2px;
    background: var(--color-sepia-ochre);
    border-radius: 2px;
    margin-top: 12px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(184, 115, 51, 0.08);
    border-radius: 24px;
    padding: 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.achievement-card:hover {
    flex-grow: 1.5;
    background: white;
    box-shadow: 0 24px 72px rgba(184, 115, 51, 0.08);
    border-color: rgba(184, 115, 51, 0.15);
}

.achievement-icon {
    margin-bottom: 14px;
}

.achievement-icon svg {
    width: 44px;
    height: 44px;
    stroke: var(--color-antique-gold);
    stroke-width: 1.5;
    fill: none;
    transition: transform 0.25s ease;
}

.achievement-card:hover .achievement-icon svg {
    transform: scale(1.1);
}

.achievement-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 600;
    color: var(--color-deep-walnut);
    transition: color 0.25s ease;
}

.achievement-card:hover .achievement-value {
    color: var(--color-antique-gold);
}

.achievement-label {
    font-size: 11px;
    color: var(--color-muted-sand);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.team-grid {
    columns: 3;
    column-gap: 24px;
    margin-top: 48px;
}

.team-card {
    break-inside: avoid;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid rgba(184, 115, 51, 0.08);
    margin-bottom: 24px;
    overflow: hidden;
    transition: all 0.25s ease;
}

.team-card:hover {
    transform: scale(1.03);
    border-color: rgba(184, 115, 51, 0.15);
    box-shadow: 0 20px 56px rgba(184, 115, 51, 0.1);
    z-index: 10;
}

.team-photo {
    width: calc(100% + 48px);
    margin: -24px -24px 20px;
    height: 180px;
    overflow: hidden;
    margin-left: 0;
    margin-right: 0;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
}

.team-card-content {
    padding: 0 24px 24px;
}

.team-icon-card {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    border: 1px solid rgba(184, 115, 51, 0.08);
    padding: 24px;
    margin-bottom: 24px;
    break-inside: avoid;
    transition: all 0.25s ease;
}

.team-icon-card:hover {
    transform: scale(1.03);
    border-color: rgba(184, 115, 51, 0.15);
    box-shadow: 0 20px 56px rgba(184, 115, 51, 0.1);
}

.team-icon-card svg {
    width: 56px;
    height: 56px;
    stroke: var(--color-antique-gold);
    stroke-width: 1.5;
    fill: none;
    margin-bottom: 16px;
}

.team-name {
    font-size: 18px;
    margin-bottom: 4px;
}

.team-role {
    font-size: 12px;
    color: var(--color-antique-gold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.team-bio {
    font-size: 14px;
    color: #7A6B62;
    line-height: 1.6;
}

.team-decor {
    height: 2px;
    width: 40px;
    background: linear-gradient(90deg, var(--color-antique-gold), var(--color-sepia-ochre));
    border-radius: 2px;
    margin-top: 16px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 80px;
    margin-top: 48px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(184, 115, 51, 0.08);
    border-top: 2px solid rgba(184, 115, 51, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:nth-child(odd) {
    align-self: start;
}

.faq-item:nth-child(even) {
    align-self: end;
    margin-top: 20px;
}

.faq-item.active {
    background: rgba(184, 115, 51, 0.04);
    border-top: 3px solid var(--color-antique-gold);
    grid-column: span 2;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    cursor: pointer;
}

.faq-question-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--color-deep-walnut);
    flex: 1;
    padding-right: 16px;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-toggle svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-muted-sand);
    stroke-width: 2;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle svg {
    stroke: var(--color-antique-gold);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 28px 24px;
}

.faq-answer-text {
    font-size: 16px;
    color: #7A6B62;
    line-height: 1.75;
}

.testimonials-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.testimonials-carousel {
    position: relative;
    height: 480px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    margin-top: 40px;
}

.testimonial-card {
    position: absolute;
    width: 320px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    border: 1px solid rgba(184, 115, 51, 0.08);
    border-top: 3px solid var(--color-sepia-ochre);
    box-shadow: 0 16px 48px rgba(61, 48, 40, 0.06);
    overflow: hidden;
    transition: all 0.4s ease;
    transform-style: preserve-3d;
}

.testimonial-card.active {
    z-index: 100;
    transform: scale(1.08);
    box-shadow: 0 24px 64px rgba(184, 115, 51, 0.12);
}

.testimonial-photo {
    height: 140px;
    overflow: hidden;
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
}

.testimonial-content {
    padding: 24px;
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 12px;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    fill: var(--color-sepia-ochre);
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    color: var(--color-warm-taupe);
    line-height: 1.7;
    margin-bottom: 16px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-antique-gold);
}

.testimonial-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-deep-walnut);
}

.testimonial-company {
    font-size: 12px;
    color: var(--color-muted-sand);
}

.testimonial-decor {
    height: 4px;
    background: linear-gradient(90deg, var(--color-antique-gold), var(--color-sepia-ochre));
    border-radius: 4px;
    margin-top: 16px;
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(8px);
    border-radius: 50%;
    border: 1px solid rgba(184, 115, 51, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 101;
}

.testimonial-nav:hover {
    background: var(--color-antique-gold);
    border-color: var(--color-antique-gold);
}

.testimonial-nav:hover svg {
    stroke: white;
}

.testimonial-nav svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-antique-gold);
    stroke-width: 2;
}

.testimonial-nav-prev {
    left: 20%;
}

.testimonial-nav-next {
    right: 20%;
}

.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
}

.contact-form-section {
    padding: 80px 60px;
}

.contact-vase {
    margin-bottom: 24px;
}

.contact-title {
    font-size: 32px;
    margin-bottom: 12px;
}

.contact-subtitle {
    font-size: 14px;
    color: var(--color-muted-sand);
    margin-bottom: 32px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-family: 'Fira Code', monospace;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-muted-sand);
    margin-bottom: 8px;
    transition: color 0.25s ease;
}

.form-input {
    width: 100%;
    padding: 14px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(61, 48, 40, 0.12);
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    color: var(--color-warm-taupe);
    transition: border-color 0.25s ease;
}

.form-input:focus {
    outline: none;
    border-bottom-color: var(--color-antique-gold);
}

.form-input:focus + .form-label,
.form-group:focus-within .form-label {
    color: var(--color-antique-gold);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-info-section {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 80px 48px;
    border: 1px solid rgba(184, 115, 51, 0.08);
    box-shadow: 0 20px 60px rgba(61, 48, 40, 0.06);
    margin: 40px;
}

.contact-block {
    padding: 24px 0;
    border-bottom: 1px solid rgba(184, 115, 51, 0.1);
}

.contact-block:last-of-type {
    border-bottom: none;
}

.contact-icon {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-antique-gold);
    stroke-width: 1.5;
    fill: none;
}

.contact-icon-text {
    font-size: 14px;
    color: var(--color-warm-taupe);
}

.contact-map {
    margin-top: 24px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(61, 48, 40, 0.06);
}

.contact-map iframe {
    width: 100%;
    height: 200px;
    border: none;
    filter: grayscale(100%);
}

.cta-section {
    padding: 100px 80px;
    text-align: center;
}

.cta-title {
    font-size: 40px;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 18px;
    color: var(--color-warm-taupe);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer {
    background: var(--color-warm-charcoal);
    padding: 80px 80px 40px;
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo svg {
    width: 40px;
    height: 40px;
}

.footer-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-warm-linen);
}

.footer-desc {
    font-size: 14px;
    color: rgba(253, 248, 244, 0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    stroke: var(--color-antique-gold);
    stroke-width: 1.5;
    fill: none;
    flex-shrink: 0;
}

.footer-contact-item span {
    font-size: 13px;
    color: rgba(253, 248, 244, 0.7);
}

.footer-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--color-warm-linen);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(253, 248, 244, 0.6);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: var(--color-antique-gold);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(253, 248, 244, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(253, 248, 244, 0.5);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: rgba(253, 248, 244, 0.5);
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-legal a:hover {
    color: var(--color-antique-gold);
}

.page-hero {
    padding: 160px 80px 80px;
    background: var(--color-soft-parchment);
    position: relative;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 560px;
}

.breadcrumbs {
    font-family: 'Fira Code', monospace;
    font-size: 12px;
    color: var(--color-muted-sand);
    letter-spacing: 0.08em;
    margin-bottom: 16px;
    animation: fadeIn 0.4s ease-out;
}

.breadcrumbs a {
    color: var(--color-muted-sand);
    text-decoration: none;
    transition: color 0.25s ease;
}

.breadcrumbs a:hover {
    color: var(--color-antique-gold);
}

.breadcrumbs span {
    margin: 0 8px;
}

.page-hero-title {
    font-size: 44px;
    color: var(--color-deep-walnut);
    margin-bottom: 16px;
    animation: slideFromLeft 0.5s ease-out;
}

@keyframes slideFromLeft {
    from {
        opacity: 0;
        transform: translateX(-28px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.page-hero-markers {
    display: flex;
    gap: 8px;
}

.page-hero-marker {
    width: 6px;
    height: 6px;
    background: var(--color-antique-gold);
    border-radius: 50%;
    animation: scaleInMarker 0.4s ease-out;
}

.page-hero-marker:nth-child(2) { animation-delay: 0.1s; }
.page-hero-marker:nth-child(3) { animation-delay: 0.2s; }

@keyframes scaleInMarker {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 48px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.25s ease;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 56px rgba(184, 115, 51, 0.15);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(45, 38, 34, 0.7), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

.gallery-item-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: white;
    font-weight: 600;
}

.gallery-item-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.reveal-fade {
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

.reveal-up {
    opacity: 0;
    transform: translateY(28px);
    transition: all 0.65s ease-out;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.96);
    transition: all 0.6s ease-out;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-28px);
    transition: all 0.6s ease-out;
}

.reveal-organic {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.7s ease-out;
}

.revealed {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1);
}

.scrollbar-custom::-webkit-scrollbar {
    width: 8px;
}

.scrollbar-custom::-webkit-scrollbar-track {
    background: transparent;
}

.scrollbar-custom::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-antique-gold), var(--color-sepia-ochre));
    border-radius: 4px;
}

.lens-reveal {
    position: relative;
    overflow: hidden;
}

.lens-reveal img {
    transition: transform 0.12s ease-out;
}

.seamless-transition {
    height: 80px;
    background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(253, 248, 244, 0.9), transparent);
}

.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.thank-you-content {
    max-width: 600px;
}

.thank-you-icon {
    margin-bottom: 32px;
}

.thank-you-icon svg {
    width: 80px;
    height: 80px;
    stroke: var(--color-antique-gold);
    stroke-width: 1.5;
    fill: none;
}

.thank-you-title {
    font-size: 48px;
    margin-bottom: 16px;
}

.thank-you-text {
    font-size: 18px;
    color: var(--color-warm-taupe);
    margin-bottom: 32px;
    line-height: 1.7;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 160px 40px 100px;
}

.legal-title {
    font-size: 36px;
    margin-bottom: 32px;
}

.legal-section {
    margin-bottom: 32px;
}

.legal-heading {
    font-size: 20px;
    margin-bottom: 16px;
}

.legal-text {
    font-size: 15px;
    color: var(--color-warm-taupe);
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-list {
    list-style: none;
    padding-left: 20px;
}

.legal-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--color-warm-taupe);
    line-height: 1.7;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: var(--color-antique-gold);
    border-radius: 50%;
}

@media (max-width: 1024px) {
    .header {
        display: none;
    }

    .mobile-header {
        display: block;
    }

    .hero {
        padding: 100px 24px 80px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-gallery {
        height: 300px;
    }

    .section {
        padding: 80px 24px;
    }

    .services-slider {
        padding: 0 24px;
    }

    .slider-arrow {
        display: none;
    }

    .split-section {
        grid-template-columns: 1fr;
    }

    .split-image {
        height: 300px;
    }

    .split-content {
        padding: 40px 24px;
    }

    .advantages-section {
        padding: 80px 24px;
    }

    .advantage-inner {
        flex-direction: column;
    }

    .advantage-icon {
        padding: 24px 24px 0;
    }

    .advantage-content {
        padding: 16px 24px 24px;
    }

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

    .team-grid {
        columns: 1;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }

    .faq-item:nth-child(even) {
        margin-top: 0;
    }

    .faq-item.active {
        grid-column: span 1;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

    .contact-info-section {
        margin: 0 24px 24px;
        padding: 40px 24px;
    }

    .contact-form-section {
        padding: 40px 24px;
    }

    .footer {
        padding: 60px 24px 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .page-hero {
        padding: 120px 24px 60px;
    }

    .page-hero-title {
        font-size: 32px;
    }

    .testimonials-carousel {
        height: auto;
        padding: 20px 0;
    }

    .testimonial-card {
        position: relative;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        transform: none !important;
    }

    .testimonial-card:not(:first-child) {
        display: none;
    }

    .testimonial-nav {
        display: none;
    }

    .cookie-consent-banner {
        left: 16px;
        right: 16px;
        max-width: none;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
    }

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

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

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

    .footer-brand {
        grid-column: span 1;
    }
}
