@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Fira+Code:wght@400;500&family=Lexend:wght@300;400;500;600;700&display=swap');

:root {
    --color-sage-cream: #F4F7F2;
    --color-warm-linen: #FAF8F4;
    --color-deep-moss: #4A6741;
    --color-warm-terracotta: #C4806B;
    --color-stone-brown: #6B5B4E;
    --color-forest-charcoal: #2D3B2D;
    --color-muted-olive: #5C6B52;
    --color-soft-stone: #9FA89A;
    --color-text-light: #7A8B72;
    --font-heading: 'Lexend', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'Fira Code', monospace;
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-pill: 32px;
    --shadow-soft: 0 16px 48px rgba(74,103,65,0.06), 0 40px 100px rgba(196,128,107,0.04);
    --shadow-medium: 0 20px 64px rgba(74,103,65,0.08), 0 40px 100px rgba(196,128,107,0.06);
    --shadow-strong: 0 24px 72px rgba(74,103,65,0.12);
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

strong, p, b, i {
    color: inherit;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.8;
    color: var(--color-muted-olive);
    background: var(--color-warm-linen);
    overflow-x: hidden;
}

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

::-webkit-scrollbar-track {
    background: var(--color-sage-cream);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--color-deep-moss), var(--color-warm-terracotta));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    opacity: 0.8;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--color-forest-charcoal);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
}

h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    line-height: 1.2;
}

h3 {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
}

h4 {
    font-size: 1.2rem;
}

a {
    color: var(--color-deep-moss);
    text-decoration: none;
    transition: color 0.25s ease;
}

a:hover {
    color: var(--color-forest-charcoal);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.01em;
    border-radius: var(--radius-pill);
    border: none;
    cursor: pointer;
    transition: all 0.25s ease-out;
    white-space: nowrap;
    min-height: 44px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-deep-moss), #5A7751);
    color: white;
    box-shadow: 0 8px 28px rgba(74,103,65,0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(74,103,65,0.35);
}

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

.btn-secondary {
    background: transparent;
    color: var(--color-forest-charcoal);
    border: 2px solid var(--color-forest-charcoal);
    padding: 12px 24px;
}

.btn-secondary:hover {
    border-color: var(--color-deep-moss);
    color: var(--color-deep-moss);
}

.btn-large {
    padding: 18px 40px;
    font-size: 15px;
}

.btn-outline-light {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.6);
    padding: 14px 28px;
}

.btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
}

.glass-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(74, 103, 65, 0.08);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-soft);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--color-sage-cream);
}

.organic-leaf {
    display: inline-block;
}

.organic-leaf svg {
    width: 48px;
    height: 48px;
    fill: rgba(74, 103, 65, 0.1);
    stroke: var(--color-deep-moss);
    stroke-width: 1.5px;
}

.moss-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: var(--color-deep-moss);
    border-radius: 50%;
    filter: drop-shadow(0 4px 12px rgba(74,103,65,0.2));
}

.moss-line {
    height: 3px;
    width: 40px;
    background: var(--color-warm-terracotta);
    border-radius: 3px;
    margin-top: 12px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-deep-moss), var(--color-warm-terracotta));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

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

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

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

.reveal-fade.visible,
.reveal-up.visible,
.reveal-scale.visible,
.reveal-left.visible,
.reveal-organic.visible {
    opacity: 1;
    transform: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 60px;
    transition: all 0.35s var(--transition-smooth);
    background: transparent;
}

.header.scrolled {
    background: rgba(244, 247, 242, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(74, 103, 65, 0.08);
    box-shadow: 0 4px 24px rgba(74, 103, 65, 0.04);
    padding: 16px 60px;
}

.header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-deep-moss), var(--color-warm-terracotta));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    width: 24px;
    height: 24px;
    fill: white;
}

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

.logo-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.02em;
    color: var(--color-forest-charcoal);
    line-height: 1.2;
}

.logo-subtitle {
    font-family: var(--font-body);
    font-size: 9px;
    color: var(--color-soft-stone);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.02em;
    color: var(--color-muted-olive);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: var(--color-deep-moss);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 6px;
    background: var(--color-deep-moss);
    border-radius: 50%;
    transition: width 0.25s ease;
}

.nav-link:hover::after {
    width: 6px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-phone {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--color-deep-moss);
}

.mobile-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    background: rgba(74, 103, 65, 0.08);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 12px;
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-deep-moss);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(244, 247, 242, 0.99);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    z-index: 999;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav.active {
    opacity: 1;
    transform: scale(1);
}

.mobile-nav-content {
    padding-top: 100px;
    text-align: center;
}

.mobile-nav-list {
    list-style: none;
}

.mobile-nav-link {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 36px;
    color: var(--color-forest-charcoal);
    padding: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, color 0.25s ease;
}

.mobile-nav.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav.active .mobile-nav-link:nth-child(1) { transition-delay: 0.07s; }
.mobile-nav.active .mobile-nav-link:nth-child(2) { transition-delay: 0.14s; }
.mobile-nav.active .mobile-nav-link:nth-child(3) { transition-delay: 0.21s; }
.mobile-nav.active .mobile-nav-link:nth-child(4) { transition-delay: 0.28s; }
.mobile-nav.active .mobile-nav-link:nth-child(5) { transition-delay: 0.35s; }

.mobile-nav-link:hover {
    color: var(--color-deep-moss);
}

.mobile-nav-divider {
    width: 40px;
    height: 2px;
    background: var(--color-deep-moss);
    margin: 8px auto;
}

.mobile-nav-contact {
    margin-top: 40px;
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--color-deep-moss);
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(74, 103, 65, 0.08);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav-close svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-forest-charcoal);
}

@media (max-width: 1024px) {
    .header {
        padding: 20px;
    }
    
    .header.scrolled {
        padding: 16px 20px;
    }
    
    .nav-menu {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav {
        display: block;
    }
}

.hero {
    min-height: 100vh;
    background: var(--color-warm-linen);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

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

.hero-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at center, rgba(74,103,65,0.12) 0%, rgba(196,128,107,0.06) 40%, transparent 70%);
    top: -40px;
    right: 10%;
    animation-delay: 0s;
}

.hero-blob-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(196,128,107,0.1) 0%, rgba(74,103,65,0.05) 50%, transparent 80%);
    bottom: -60px;
    left: 20%;
    border-radius: 40% 60% 30% 70% / 60% 40% 50% 50%;
    animation-delay: -10s;
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(40px, -40px) scale(1.05);
    }
}

.hero-leaf {
    position: absolute;
    stroke: rgba(74, 103, 65, 0.08);
    stroke-width: 1.5px;
    fill: none;
    opacity: 0.5;
    animation: leafFloat 30s ease-in-out infinite;
}

@keyframes leafFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(20px, -20px) rotate(5deg);
    }
}

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

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

.hero-leaf-decor {
    margin-bottom: 24px;
    transform: scale(0);
    animation: scaleIn 0.4s ease-out 0.2s forwards;
}

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

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.05;
    max-width: 520px;
    clip-path: inset(0 100% 0 0);
    animation: clipReveal 0.7s ease-out 0.3s forwards;
}

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

.hero-subtitle {
    font-size: 17px;
    color: var(--color-text-light);
    line-height: 1.8;
    max-width: 440px;
    margin-top: 20px;
    opacity: 0;
    animation: fadeIn 0.6s ease-out 0.5s forwards;
}

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

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

.hero-marker {
    width: 8px;
    height: 8px;
    background: var(--color-deep-moss);
    border-radius: 50%;
    filter: drop-shadow(0 4px 12px rgba(74,103,65,0.2));
    animation: scaleIn 0.4s ease-out forwards;
}

.hero-marker:nth-child(1) { animation-delay: 0.6s; }
.hero-marker:nth-child(2) { animation-delay: 0.7s; }
.hero-marker:nth-child(3) { animation-delay: 0.8s; }

.hero-buttons {
    display: flex;
    gap: 12px;
    margin-top: 36px;
    opacity: 0;
    animation: scaleIn 0.6s ease-out 0.7s forwards;
}

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

.hero-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 16px;
    height: 100%;
}

.bento-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    animation: bentoReveal 0.8s ease-out forwards;
    opacity: 0;
}

.bento-item:nth-child(1) {
    grid-row: span 2;
    animation-delay: 0.2s;
}

.bento-item:nth-child(2) {
    animation-delay: 0.32s;
}

.bento-item:nth-child(3) {
    animation-delay: 0.44s;
}

.bento-item:nth-child(4) {
    animation-delay: 0.56s;
}

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

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
    transition: transform 0.3s ease;
}

.bento-item:hover img {
    transform: scale(1.05);
}

.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(74, 103, 65, 0.08);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-medium);
    animation: cardReveal 0.6s ease-out forwards;
    opacity: 0;
}

.hero-card-1 {
    top: 40px;
    right: -20px;
    animation-delay: 0.7s;
}

.hero-card-2 {
    bottom: 40px;
    right: -20px;
    animation-delay: 0.85s;
}

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

.hero-card-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    color: var(--color-forest-charcoal);
}

.hero-card-value {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--color-deep-moss);
    margin-top: 4px;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        padding: 100px 20px 60px;
        gap: 40px;
    }
    
    .hero-gallery {
        height: 400px;
    }
}

@media (max-width: 640px) {
    .hero-gallery {
        height: 300px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
}

.seamless-transition {
    height: 80px;
    background: radial-gradient(ellipse 80% 100% at 50% 50%, rgba(244,247,242,0.9), transparent);
    pointer-events: none;
}

.services-section {
    background: var(--color-sage-cream);
    padding: 100px 0;
}

.sticky-split {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 100vh;
    position: relative;
}

.sticky-panel {
    position: sticky;
    top: 0;
    height: 100vh;
    background: rgba(250, 248, 244, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-right: 1px solid rgba(74, 103, 65, 0.08);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.scroll-panel {
    padding: 80px;
}

.service-item {
    padding: 24px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 40px rgba(74, 103, 65, 0.08);
    transform: translateX(8px);
}

.service-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    stroke: var(--color-deep-moss);
    stroke-width: 2;
    fill: none;
}

.service-content h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.service-content p {
    font-size: 14px;
    color: var(--color-text-light);
}

.service-decor {
    height: 3px;
    width: 40px;
    background: var(--color-warm-terracotta);
    border-radius: 3px;
    margin-top: 12px;
}

@media (max-width: 1024px) {
    .sticky-split {
        grid-template-columns: 1fr;
    }
    
    .sticky-panel {
        position: relative;
        height: auto;
        padding: 40px 24px;
    }
    
    .scroll-panel {
        padding: 40px 24px;
    }
}

.about-section {
    background: var(--color-warm-linen);
    padding: 100px 0;
}

.split-screen {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 0;
    align-items: center;
}

.split-divider {
    width: 80px;
    background: radial-gradient(ellipse 100% 80% at 50% 50%, rgba(244,247,242,0.5), rgba(74,103,65,0.04), transparent);
}

.about-image-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    height: 100%;
    min-height: 500px;
}

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

.about-image-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(74,103,65,0.06) 0%, transparent 60%);
}

.about-image-decor {
    position: absolute;
    bottom: 60px;
    left: 60px;
    width: 80px;
    height: 80px;
    stroke: rgba(74,103,65,0.3);
    stroke-width: 2;
    fill: none;
}

.about-content {
    padding: 80px 60px;
}

@media (max-width: 1024px) {
    .split-screen {
        grid-template-columns: 1fr;
    }
    
    .about-image-wrap {
        min-height: 350px;
    }
    
    .about-content {
        padding: 40px 24px;
    }
    
    .split-divider {
        display: none;
    }
}

.process-section {
    background: var(--color-sage-cream);
    padding: 100px 0;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--color-deep-moss), var(--color-warm-terracotta), var(--color-deep-moss));
    border-radius: 2px;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: calc(50% + 56px);
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:nth-child(even) {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: calc(50% + 56px);
}

.timeline-card {
    width: 100%;
    max-width: 380px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    border: 1px solid rgba(74, 103, 65, 0.08);
    box-shadow: 0 16px 48px rgba(74,103,65,0.05);
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item:nth-child(even) .timeline-card {
    transform: translateX(28px);
}

.timeline-card.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-number {
    width: 52px;
    height: 52px;
    border: 2px solid rgba(74,103,65,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 22px;
    color: var(--color-deep-moss);
    margin-bottom: 16px;
}

.timeline-card h4 {
    margin-bottom: 8px;
}

.timeline-card p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.timeline-image {
    margin-top: 16px;
    height: 120px;
    border-radius: var(--radius-md);
    overflow: hidden;
}

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

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 30px;
    width: 12px;
    height: 12px;
    background: var(--color-deep-moss);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--color-deep-moss);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-connector {
    position: absolute;
    top: 36px;
    width: 40px;
    height: 3px;
    background: var(--color-deep-moss);
    border-radius: 2px;
}

.timeline-item:nth-child(odd) .timeline-connector {
    right: calc(50% + 16px);
}

.timeline-item:nth-child(even) .timeline-connector {
    left: calc(50% + 16px);
}

.marquee {
    overflow: hidden;
    padding: 40px 0;
    border-top: 1px solid rgba(74, 103, 65, 0.08);
    border-bottom: 1px solid rgba(74, 103, 65, 0.08);
    margin-top: 60px;
}

.marquee-track {
    display: flex;
    animation: marqueeScroll 30s linear infinite;
}

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

.marquee-content {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.marquee-item {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    color: var(--color-forest-charcoal);
    letter-spacing: 0.04em;
    padding: 0 40px;
    white-space: nowrap;
}

.marquee-dot {
    width: 8px;
    height: 8px;
    background: var(--color-deep-moss);
    border-radius: 2px;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
    }
    
    .timeline-item,
    .timeline-item:nth-child(even) {
        padding-left: 60px;
        padding-right: 0;
        justify-content: flex-start;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .timeline-connector,
    .timeline-item:nth-child(even) .timeline-connector {
        left: calc(20px + 16px);
        right: auto;
    }
    
    .timeline-card,
    .timeline-item:nth-child(even) .timeline-card {
        transform: translateX(28px);
    }
    
    .timeline-card.visible,
    .timeline-item:nth-child(even) .timeline-card.visible {
        transform: translateX(0);
    }
}

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

.advantages-section h2 {
    color: white;
}

.advantages-section p {
    color: rgba(255, 255, 255, 0.7);
}

.flex-grow-grid {
    display: flex;
    gap: 16px;
    margin-top: 60px;
}

.advantage-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(74, 103, 65, 0.08);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.advantage-card:hover {
    flex-grow: 1.5;
    background: white;
    box-shadow: var(--shadow-strong);
    border-color: rgba(74, 103, 65, 0.15);
}

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

.advantage-card:hover .advantage-value {
    color: var(--color-deep-moss);
}

.advantage-icon {
    width: 44px;
    height: 44px;
    stroke: var(--color-deep-moss);
    stroke-width: 2;
    fill: none;
    margin-bottom: 14px;
    transition: transform 0.3s ease;
}

.advantage-value {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 44px;
    color: var(--color-forest-charcoal);
    line-height: 1;
    transition: color 0.3s ease;
}

.advantage-label {
    font-size: 11px;
    color: var(--color-soft-stone);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 8px;
}

.advantage-decor {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    fill: rgba(74,103,65,0.1);
    stroke: rgba(74,103,65,0.3);
    stroke-width: 1px;
}

.advantage-card:not(:hover) {
    flex-grow: 0.7;
    opacity: 0.85;
}

@media (max-width: 768px) {
    .flex-grow-grid {
        flex-direction: column;
    }
    
    .advantage-card:hover,
    .advantage-card:not(:hover) {
        flex-grow: 1;
        opacity: 1;
    }
}

.collections-section {
    background: var(--color-warm-linen);
    padding: 100px 0;
}

.masonry-grid {
    columns: 3;
    column-gap: 24px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 24px;
}

.collection-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(74, 103, 65, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.collection-card:hover {
    transform: scale(1.03);
    border-color: rgba(74, 103, 65, 0.15);
    box-shadow: 0 20px 56px rgba(74,103,65,0.1);
}

.collection-card-image {
    height: 180px;
    margin: -24px -24px 20px -24px;
    overflow: hidden;
}

.collection-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.05);
    transition: transform 0.3s ease;
}

.collection-card:hover .collection-card-image img {
    transform: scale(1.05);
}

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

.collection-card h4 {
    font-size: 17px;
}

.collection-tag {
    font-size: 12px;
    color: var(--color-deep-moss);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.collection-card p {
    font-size: 14px;
    color: var(--color-text-light);
    margin-top: 8px;
}

.collection-gradient {
    height: 3px;
    width: 40px;
    background: linear-gradient(90deg, var(--color-deep-moss), var(--color-warm-terracotta));
    border-radius: 3px;
    margin-top: 16px;
}

.collection-icon-card {
    padding: 24px;
    text-align: center;
}

.collection-icon-card svg {
    width: 52px;
    height: 52px;
    stroke: var(--color-deep-moss);
    stroke-width: 2;
    fill: none;
    margin-bottom: 16px;
}

@media (max-width: 1024px) {
    .masonry-grid {
        columns: 2;
    }
}

@media (max-width: 640px) {
    .masonry-grid {
        columns: 1;
    }
}

.team-section {
    background: var(--color-sage-cream);
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 0 80px;
}

.team-info {
    padding-right: 40px;
}

.team-list {
    list-style: none;
}

.team-member {
    position: relative;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(74, 103, 65, 0.08);
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.team-member::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: var(--color-deep-moss);
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    transition: width 0.3s ease;
}

.team-member:hover {
    border-color: rgba(74, 103, 65, 0.15);
    box-shadow: 0 8px 24px rgba(74, 103, 65, 0.06);
}

.team-member:hover::before {
    width: 3px;
}

.team-member-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-forest-charcoal);
}

.team-member-role {
    font-size: 12px;
    color: var(--color-deep-moss);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 4px;
}

.team-member-spec {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--color-soft-stone);
    margin-top: 4px;
}

.team-photos {
    position: relative;
}

.team-photo {
    position: absolute;
    right: 0;
    top: 0;
    width: 220px;
    height: 160px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid rgba(74, 103, 65, 0.15);
    box-shadow: 0 12px 40px rgba(74,103,65,0.08);
    opacity: 0;
    transform: translateX(-20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    pointer-events: none;
}

.team-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(74,103,65,0.04) 0%, transparent 60%);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member:hover .team-photo {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: 1fr;
        padding: 0 24px;
        gap: 40px;
    }
    
    .team-photos {
        min-height: 200px;
    }
    
    .team-photo {
        width: 160px;
        height: 120px;
        position: relative;
        opacity: 1;
        transform: none;
        margin-bottom: 12px;
    }
}

.faq-section {
    background: var(--color-warm-linen);
    padding: 100px 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0 80px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(74, 103, 65, 0.08);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: 0 12px 40px rgba(74,103,65,0.04);
    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(74, 103, 65, 0.04);
    border-left: 4px solid var(--color-deep-moss);
}

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

.faq-question h4 {
    font-size: 17px;
}

.faq-toggle {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
}

.faq-toggle::before,
.faq-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--color-soft-stone);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.faq-toggle::before {
    width: 14px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.faq-toggle::after {
    width: 2px;
    height: 14px;
    transform: translate(-50%, -50%);
}

.faq-item.active .faq-toggle::before,
.faq-item.active .faq-toggle::after {
    background: var(--color-deep-moss);
}

.faq-item.active .faq-toggle::after {
    transform: translate(-50%, -50%) rotate(45deg);
}

.faq-item.active .faq-toggle::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--transition-smooth);
}

.faq-answer p {
    padding: 16px 0 0;
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.75;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }
    
    .faq-item:nth-child(even) {
        margin-top: 0;
    }
}

.testimonials-section {
    background: var(--color-sage-cream);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-wave {
    position: absolute;
    width: 100%;
    stroke: rgba(74, 103, 65, 0.08);
    stroke-width: 1;
    fill: none;
}

.testimonials-wave-top {
    top: 0;
}

.testimonials-wave-bottom {
    bottom: 0;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    padding: 40px 0;
    overflow: visible;
}

.testimonials-track-1 {
    animation: testimonialScroll 40s linear infinite;
}

.testimonials-track-2 {
    animation: testimonialScrollReverse 35s linear infinite;
}

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

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

.testimonial-card {
    min-width: 320px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(74, 103, 65, 0.08);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 16px 48px rgba(74,103,65,0.05);
    flex-shrink: 0;
}

.testimonial-icon {
    width: 32px;
    height: 32px;
    stroke: var(--color-deep-moss);
    stroke-width: 2;
    fill: none;
    margin-bottom: 12px;
}

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

.testimonial-star {
    width: 16px;
    height: 16px;
    fill: var(--color-warm-terracotta);
}

.testimonial-text {
    font-size: 14px;
    color: var(--color-muted-olive);
    font-style: italic;
    line-height: 1.65;
    margin-bottom: 12px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(74, 103, 65, 0.15);
}

.testimonial-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    color: var(--color-forest-charcoal);
}

.testimonial-company {
    font-size: 11px;
    color: var(--color-soft-stone);
}

.contact-section {
    background: var(--color-warm-linen);
    padding: 100px 0;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
}

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

.contact-form h2 {
    margin-bottom: 8px;
}

.contact-form-subtitle {
    font-size: 14px;
    color: var(--color-soft-stone);
    margin-bottom: 32px;
}

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

.form-label {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-soft-stone);
    margin-bottom: 8px;
    transition: color 0.25s ease;
}

.form-input {
    width: 100%;
    padding: 14px 0;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-muted-olive);
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(45, 59, 45, 0.12);
    border-radius: 0;
    transition: border-color 0.25s ease;
    outline: none;
}

.form-input:focus {
    border-color: var(--color-deep-moss);
}

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

.form-input::placeholder {
    color: var(--color-soft-stone);
}

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

.contact-info-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-xl);
    padding: 80px 48px;
    border: 1px solid rgba(74, 103, 65, 0.08);
    box-shadow: 0 20px 60px rgba(74,103,65,0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-item {
    padding: 24px 0;
    border-bottom: 1px solid rgba(74, 103, 65, 0.1);
}

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

.contact-info-icon {
    width: 24px;
    height: 24px;
    stroke: var(--color-deep-moss);
    stroke-width: 1.5;
    fill: none;
    margin-bottom: 12px;
}

.contact-info-text {
    font-size: 16px;
    color: var(--color-muted-olive);
}

.contact-info-text strong {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-forest-charcoal);
    margin-bottom: 4px;
}

.contact-map {
    margin-top: 24px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(74,103,65,0.06);
    filter: grayscale(100%);
}

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

@media (max-width: 1024px) {
    .contact-split {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrap {
        padding: 40px 24px;
    }
    
    .contact-info-card {
        padding: 40px 24px;
    }
}

.footer {
    background: var(--color-sage-cream);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(74, 103, 65, 0.08);
}

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

.footer-brand p {
    font-size: 14px;
    color: var(--color-text-light);
    margin-top: 16px;
    max-width: 300px;
}

.footer-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--color-forest-charcoal);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

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

.footer-links a {
    font-size: 14px;
    color: var(--color-muted-olive);
    transition: color 0.25s ease;
}

.footer-links a:hover {
    color: var(--color-deep-moss);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(74, 103, 65, 0.08);
}

.footer-copyright {
    font-size: 13px;
    color: var(--color-soft-stone);
}

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

.footer-legal a {
    font-size: 13px;
    color: var(--color-soft-stone);
}

.footer-legal a:hover {
    color: var(--color-deep-moss);
}

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

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: 0 20px 60px rgba(74,103,65,0.15);
    z-index: 9999;
    display: none;
}

.cookie-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-banner h4 {
    font-size: 16px;
    margin-bottom: 8px;
}

.cookie-banner p {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 16px;
}

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

.cookie-buttons .btn {
    flex: 1;
    padding: 12px 16px;
    font-size: 13px;
}

.page-hero {
    background: var(--color-sage-cream);
    min-height: 280px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(74,103,65,0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(196,128,107,0.06) 0%, transparent 40%);
    opacity: 0.4;
}

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

.breadcrumbs {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--color-soft-stone);
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.breadcrumbs a {
    color: var(--color-soft-stone);
}

.breadcrumbs a:hover {
    color: var(--color-deep-moss);
}

.breadcrumbs span {
    margin: 0 8px;
}

.page-hero h1 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.page-hero h1::before {
    content: '';
    width: 8px;
    height: 20px;
    background: var(--color-deep-moss);
    border-radius: 4px;
}

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

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

.page-hero-blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle at center, rgba(74,103,65,0.12) 0%, rgba(196,128,107,0.06) 40%, transparent 70%);
    top: -40px;
    right: 10%;
    animation-delay: 0s;
}

.page-hero-blob-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(196,128,107,0.1) 0%, rgba(74,103,65,0.05) 50%, transparent 80%);
    bottom: -60px;
    left: 20%;
    border-radius: 40% 60% 30% 70% / 60% 40% 50% 50%;
    animation-delay: -10s;
}

.page-hero-leaf {
    position: absolute;
    stroke: rgba(74, 103, 65, 0.08);
    stroke-width: 1.5px;
    fill: none;
    opacity: 0.5;
    animation: leafFloat 30s ease-in-out infinite;
}

@keyframes blobFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }
    100% {
        transform: translate(40px, -40px) scale(1.05);
    }
}

@keyframes leafFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(20px, -20px) rotate(5deg);
    }
}

@media (max-width: 768px) {
    .page-hero-content {
        padding: 100px 20px 40px;
    }
}

.catalog-intro {
    text-align: center;
}

.catalog-intro-content svg {
    margin-bottom: 20px;
}

.catalog-intro-content h2 {
    margin-bottom: 16px;
}

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

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    aspect-ratio: 1;
}

.gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

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

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

.catalog-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.catalog-full-item {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(74, 103, 65, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 12px 40px rgba(74,103,65,0.04);
}

.catalog-full-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 72px rgba(74,103,65,0.12);
    border-color: rgba(74, 103, 65, 0.15);
}

.catalog-full-image {
    height: 240px;
    overflow: hidden;
}

.catalog-full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.catalog-full-item:hover .catalog-full-image img {
    transform: scale(1.05);
}

.catalog-full-content {
    padding: 24px;
}

.catalog-full-category {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-deep-moss);
    margin-bottom: 8px;
}

.catalog-full-content h3 {
    margin-bottom: 12px;
    font-size: 18px;
}

.catalog-full-content p {
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.catalog-full-price {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-forest-charcoal);
    margin-top: 16px;
}

.catalog-cta {
    text-align: center;
}

.catalog-cta-content svg {
    margin-bottom: 20px;
}

.catalog-cta-content h2 {
    margin-bottom: 16px;
}

.catalog-cta-content p {
    font-size: 16px;
    color: var(--color-text-light);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.catalog-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

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

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

.gallery-overlay span {
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item:nth-child(1) {
        grid-column: span 1;
    }
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(74, 103, 65, 0.08);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--color-deep-moss), #5A7751);
    color: white;
    transform: scale(1.05);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-card.featured h4,
.pricing-card.featured .pricing-price {
    color: white;
}

.pricing-card.featured p {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-icon {
    width: 48px;
    height: 48px;
    stroke: var(--color-deep-moss);
    stroke-width: 2;
    fill: none;
    margin: 0 auto 16px;
}

.pricing-card.featured .pricing-icon {
    stroke: white;
}

.pricing-card h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.pricing-price {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 32px;
    color: var(--color-deep-moss);
    margin-bottom: 8px;
}

.pricing-price span {
    font-size: 14px;
    color: var(--color-soft-stone);
    font-weight: 400;
}

.pricing-card.featured .pricing-price span {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-card p {
    font-size: 14px;
    color: var(--color-text-light);
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
}

.thank-you-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-warm-linen);
    position: relative;
    overflow: hidden;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    padding: 40px;
    position: relative;
    z-index: 2;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    stroke: var(--color-deep-moss);
    stroke-width: 2;
    fill: none;
    margin: 0 auto 24px;
}

.thank-you-section h1 {
    margin-bottom: 16px;
}

.thank-you-section p {
    font-size: 18px;
    color: var(--color-text-light);
    margin-bottom: 32px;
}

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

.legal-content h2 {
    font-size: 20px;
    margin: 40px 0 16px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 16px;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-content li {
    margin-bottom: 8px;
}

.form-success {
    text-align: center;
    padding: 60px 20px;
}

.form-success svg {
    width: 64px;
    height: 64px;
    stroke: var(--color-deep-moss);
    stroke-width: 2;
    fill: none;
    margin-bottom: 24px;
}

.form-success h2 {
    margin-bottom: 12px;
}

.form-success p {
    color: var(--color-text-light);
    max-width: 400px;
    margin: 0 auto 32px;
}

.service-detail-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.service-detail-hero-image {
    position: relative;
    overflow: hidden;
}

.service-detail-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-detail-hero:hover .service-detail-hero-image img {
    transform: scale(1.05);
}

.service-detail-hero-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-sage-cream);
}

.service-detail-hero-content h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--color-forest-charcoal);
}

.service-detail-hero-content p {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 400px;
}

.service-detail-content {
    padding: 80px 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-detail-text h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.service-detail-text p {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-detail-features {
    list-style: none;
    padding: 0;
}

.service-detail-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
    font-size: 14px;
    color: var(--color-muted-olive);
}

.service-detail-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    background: var(--color-deep-moss);
    border-radius: 50%;
}

.service-detail-price-card {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(74, 103, 65, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 12px 40px rgba(74,103,65,0.04);
}

.service-detail-price-card h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--color-forest-charcoal);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(74, 103, 65, 0.08);
}

.price-item:last-child {
    border-bottom: none;
}

.price-item span:first-child {
    font-size: 14px;
    color: var(--color-muted-olive);
}

.price-item span:last-child {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    color: var(--color-forest-charcoal);
}

.service-detail-cta {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(74, 103, 65, 0.08);
}

.service-detail-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.service-detail-cta p {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto 24px;
}

.collections-intro {
    text-align: center;
}

.collections-intro-content svg {
    margin-bottom: 20px;
}

.collections-intro-content h2 {
    margin-bottom: 16px;
}

.collections-full-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
}

.collection-full-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(74, 103, 65, 0.08);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(74,103,65,0.06);
    transition: all 0.4s ease;
}

.collection-full-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(74,103,65,0.12);
    border-color: rgba(74, 103, 65, 0.15);
}

.collection-full-card-reverse {
    direction: rtl;
}

.collection-full-card-reverse .collection-full-content {
    direction: ltr;
}

.collection-full-image {
    height: 400px;
    overflow: hidden;
}

.collection-full-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.collection-full-card:hover .collection-full-image img {
    transform: scale(1.05);
}

.collection-full-content {
    padding: 40px;
}

.collection-full-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-deep-moss);
    margin-bottom: 12px;
}

.collection-full-content h3 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.collection-full-content p {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.collection-full-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.collection-full-features li {
    padding: 6px 0;
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    color: var(--color-muted-olive);
}

.collection-full-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--color-deep-moss);
    border-radius: 50%;
}

.collections-cta {
    text-align: center;
}

.collections-cta-content svg {
    margin-bottom: 20px;
}

.collections-cta-content h2 {
    margin-bottom: 16px;
}

.collections-cta-content p {
    font-size: 16px;
    color: var(--color-text-light);
    max-width: 500px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

/* Mobile responsive styles for furniture catalog */
@media (max-width: 768px) {
    .page-hero-blob-1,
    .page-hero-blob-2 {
        width: 300px;
        height: 300px;
        opacity: 0.3;
    }

    .catalog-full-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .catalog-full-item {
        margin: 0 20px;
    }

    .catalog-full-image {
        height: 200px;
    }

    .catalog-full-content {
        padding: 20px;
    }

    .catalog-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .catalog-cta-buttons .btn {
        width: 100%;
    }

    .service-detail-hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .service-detail-hero-content {
        padding: 40px 24px;
        text-align: center;
    }

    .service-detail-hero-content h2 {
        font-size: 1.8rem;
    }

    .service-detail-hero-content p {
        font-size: 15px;
        max-width: none;
    }

    .service-detail-content {
        padding: 60px 0;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail-price-card {
        padding: 24px;
    }

    .service-detail-cta {
        margin-top: 40px;
        padding: 32px 20px;
    }

    .service-detail-cta h3 {
        font-size: 1.3rem;
    }

    .service-detail-cta p {
        font-size: 15px;
    }

    .collections-full-grid {
        gap: 40px;
    }

    .collection-full-card {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 0 20px;
    }

    .collection-full-card-reverse {
        direction: ltr;
    }

    .collection-full-image {
        height: 250px;
    }

    .collection-full-content {
        padding: 24px;
        text-align: center;
    }

    .collection-full-content h3 {
        font-size: 1.5rem;
    }

    .collection-full-content p {
        font-size: 15px;
    }

    .collection-full-features {
        margin-bottom: 24px;
    }
}

/* FAQ Full Styles for frequently-asked.html */
.faq-intro {
    text-align: center;
    margin-bottom: 40px;
}

.faq-intro svg {
    margin-bottom: 20px;
}

.faq-intro h2 {
    margin-bottom: 16px;
}

.faq-intro p {
    font-size: 16px;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.faq-full-section {
    background: var(--color-warm-linen);
    padding: 100px 0;
}

.faq-full-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.faq-full-item {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(74, 103, 65, 0.08);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    box-shadow: 0 12px 40px rgba(74,103,65,0.04);
    transition: all 0.3s ease;
}

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

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

.faq-full-item.active {
    background: rgba(74, 103, 65, 0.04);
    border-left: 4px solid var(--color-deep-moss);
}

.faq-full-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}

.faq-full-question h4 {
    font-size: 17px;
    margin: 0;
    flex: 1;
}

.faq-full-toggle {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    position: relative;
}

.faq-full-toggle::before,
.faq-full-toggle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--color-soft-stone);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.faq-full-toggle::before {
    width: 14px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.faq-full-toggle::after {
    width: 2px;
    height: 14px;
    transform: translate(-50%, -50%);
}

.faq-full-item.active .faq-full-toggle::before,
.faq-full-item.active .faq-full-toggle::after {
    background: var(--color-deep-moss);
}

.faq-full-item.active .faq-full-toggle::after {
    transform: translate(-50%, -50%) rotate(45deg);
}

.faq-full-item.active .faq-full-toggle::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.faq-full-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--transition-smooth);
}

.faq-full-answer p {
    padding: 16px 0 0;
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.75;
}

.faq-full-item.active .faq-full-answer {
    max-height: 300px;
}

.faq-contact-cta {
    text-align: center;
    margin-top: 80px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(74, 103, 65, 0.08);
}

.faq-contact-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.faq-contact-cta p {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto 24px;
}

@media (max-width: 768px) {
    .faq-full-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-full-item:nth-child(even) {
        margin-top: 0;
    }
    
    .faq-full-item {
        padding: 24px 20px;
    }
    
    .faq-full-question h4 {
        font-size: 16px;
    }
    
    .faq-contact-cta {
        padding: 32px 20px;
        margin-top: 60px;
    }
    
    .faq-contact-cta h3 {
        font-size: 1.3rem;
    }
    
    .faq-contact-cta p {
        font-size: 15px;
    }
}
