@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Outfit:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2C2416;
    --secondary: #8B7355;
    --accent: #C4A77D;
    --cream: #F5F1EB;
    --light: #FDFCFA;
    --text: #3D3528;
    --text-light: #6B6358;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    background: var(--light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.8rem); }
h4 { font-size: clamp(1rem, 2vw, 1.3rem); }

p {
    margin-bottom: 12px;
    color: var(--text-light);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--light);
}

.btn-primary:hover {
    background: var(--secondary);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--light);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
    transition: transform 0.4s ease, background 0.3s ease;
}

.header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    background: rgba(253, 252, 250, 0.95);
    backdrop-filter: blur(10px);
}

.header.scrolled .header-inner {
    box-shadow: 0 2px 20px rgba(44, 36, 22, 0.08);
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.logo span {
    color: var(--accent);
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-desktop a {
    font-size: 13px;
    font-weight: 400;
    color: var(--text);
    position: relative;
    padding: 4px 0;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--light);
    padding: 80px 24px 40px;
    transition: right 0.4s ease;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    z-index: 1001;
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile ul {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.nav-mobile li {
    border-bottom: 1px solid rgba(139, 115, 85, 0.15);
}

.nav-mobile a {
    display: block;
    padding: 14px 0;
    font-size: 15px;
    color: var(--text);
}

.nav-mobile a:hover {
    color: var(--accent);
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 36, 22, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, var(--light) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary);
    margin-bottom: 16px;
}

.hero h1 {
    margin-bottom: 20px;
}

.hero p {
    font-size: 15px;
    max-width: 480px;
    margin-bottom: 28px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-image {
    display: none;
}

.section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-subtitle {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.section-header h2 {
    margin-bottom: 12px;
}

.section-header p {
    max-width: 560px;
    margin: 0 auto;
}

.about-section {
    background: var(--cream);
}

.about-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

.about-image {
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.about-content h3 {
    margin-bottom: 16px;
}

.features-grid {
    display: grid;
    gap: 20px;
    margin-top: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--light);
    font-size: 16px;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 13px;
    margin: 0;
}

.services-section {
    background: var(--light);
}

.services-grid {
    display: grid;
    gap: 20px;
}

.service-card {
    background: var(--cream);
    padding: 28px 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(44, 36, 22, 0.1);
}

.service-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--light);
    font-size: 20px;
    margin-bottom: 18px;
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 13px;
    margin-bottom: 16px;
}

.service-card a {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-card a:hover {
    color: var(--primary);
}

.products-section {
    background: var(--cream);
}

.products-grid {
    display: grid;
    gap: 24px;
}

.product-card {
    background: var(--light);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.product-card:hover {
    box-shadow: 0 15px 40px rgba(44, 36, 22, 0.12);
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent);
    color: var(--light);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.product-info p {
    font-size: 13px;
    margin-bottom: 12px;
}

.product-price {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary);
}

.product-price span {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
}

.process-section {
    background: var(--primary);
    color: var(--light);
}

.process-section .section-subtitle {
    color: var(--accent);
}

.process-section .section-header h2 {
    color: var(--light);
}

.process-section .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.process-grid {
    display: grid;
    gap: 24px;
}

.process-step {
    text-align: center;
    padding: 24px 16px;
}

.step-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--primary);
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 16px;
}

.process-step h4 {
    color: var(--light);
    margin-bottom: 8px;
}

.process-step p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.testimonial-section {
    background: var(--light);
}

.testimonial-card {
    background: var(--cream);
    padding: 28px 24px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 500;
    color: var(--primary);
}

.testimonial-role {
    font-size: 12px;
    color: var(--text-light);
}

.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    text-align: center;
    padding: 50px 0;
}

.cta-section h2 {
    color: var(--light);
    margin-bottom: 12px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto 24px;
}

.cta-section .btn-primary {
    background: var(--light);
    color: var(--primary);
}

.cta-section .btn-primary:hover {
    background: var(--accent);
    color: var(--light);
}

.page-header {
    padding: 120px 0 50px;
    text-align: center;
    background: var(--cream);
}

.page-header h1 {
    margin-bottom: 12px;
}

.page-header p {
    max-width: 560px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 12px;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--text-light);
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb span {
    color: var(--text-light);
}

.content-section {
    background: var(--light);
}

.content-grid {
    display: grid;
    gap: 40px;
}

.content-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.gallery-section {
    background: var(--cream);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.gallery-item {
    height: 160px;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-family: var(--font-heading);
    font-size: 1rem;
}

.values-grid {
    display: grid;
    gap: 20px;
}

.value-card {
    background: var(--cream);
    padding: 24px;
    text-align: center;
}

.value-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--light);
    font-size: 20px;
    margin: 0 auto 14px;
}

.value-card h4 {
    margin-bottom: 8px;
}

.value-card p {
    font-size: 13px;
    margin: 0;
}

.contact-section {
    background: var(--light);
}

.contact-wrapper {
    display: grid;
    gap: 40px;
}

.contact-info {
    background: var(--primary);
    padding: 32px 24px;
    color: var(--light);
}

.contact-info h3 {
    color: var(--light);
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-item i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-size: 13px;
}

.contact-item strong {
    display: block;
    color: var(--light);
    font-weight: 500;
    margin-bottom: 2px;
}

.contact-form-wrapper {
    background: var(--cream);
    padding: 32px 24px;
}

.contact-form-wrapper h3 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-body);
    font-size: 14px;
    border: 1px solid rgba(139, 115, 85, 0.3);
    background: var(--light);
    color: var(--text);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--accent);
}

.checkbox-group label {
    font-size: 12px;
    text-transform: none;
    letter-spacing: 0;
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--accent);
}

.map-section {
    background: var(--cream);
}

.map-container {
    height: 300px;
    background: var(--secondary);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer {
    background: var(--primary);
    color: var(--light);
    padding: 40px 0 0;
}

.footer-content {
    display: grid;
    gap: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    color: var(--light);
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-links h4 {
    color: var(--light);
    font-size: 14px;
    margin-bottom: 14px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 0;
    text-align: center;
}

.copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.policy-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.policy-links a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.policy-links a:hover {
    color: var(--accent);
}

.policy-content {
    background: var(--light);
}

.policy-text {
    max-width: 800px;
    margin: 0 auto;
}

.policy-text h2 {
    font-size: 1.4rem;
    margin: 32px 0 16px;
}

.policy-text h3 {
    font-size: 1.1rem;
    margin: 24px 0 12px;
}

.policy-text p {
    margin-bottom: 14px;
}

.policy-text ul {
    margin: 14px 0;
    padding-left: 20px;
}

.policy-text li {
    margin-bottom: 8px;
    color: var(--text-light);
    font-size: 14px;
    list-style: disc;
}

.error-page,
.thankyou-page {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--cream);
    height: 100vh;
}

.error-content,
.thankyou-content {
    padding: 40px 20px;
}

.error-code {
    font-family: var(--font-heading);
    font-size: clamp(5rem, 15vw, 10rem);
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 16px;
}

.error-content h1,
.thankyou-content h1 {
    margin-bottom: 12px;
}

.error-content p,
.thankyou-content p {
    max-width: 400px;
    margin: 0 auto 24px;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--light);
    font-size: 36px;
    margin: 0 auto 24px;
    border-radius: 50%;
}

.privacy-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: var(--primary);
    padding: 20px;
    z-index: 9999;
    transition: bottom 0.4s ease;
}

.privacy-popup.active {
    bottom: 0;
}

.popup-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 1200px;
    margin: 0 auto;
}

.popup-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.popup-content a {
    color: var(--accent);
}

.popup-btns {
    display: flex;
    gap: 10px;
}

.popup-btns .btn {
    padding: 8px 18px;
    font-size: 12px;
}

.category-grid {
    display: grid;
    gap: 24px;
}

.category-card {
    background: var(--cream);
    padding: 28px 24px;
}

.category-card h3 {
    margin-bottom: 12px;
}

.category-card p {
    font-size: 13px;
    margin-bottom: 16px;
}

.category-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.category-features span {
    font-size: 11px;
    padding: 4px 10px;
    background: var(--light);
    color: var(--text);
}

.team-section {
    background: var(--light);
}

.team-grid {
    display: grid;
    gap: 20px;
}

.team-card {
    background: var(--cream);
    padding: 24px;
    text-align: center;
}

.team-avatar {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: var(--light);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 14px;
    border-radius: 50%;
}

.team-card h4 {
    margin-bottom: 4px;
}

.team-card span {
    font-size: 12px;
    color: var(--text-light);
}

@media (min-width: 480px) {
    .services-grid,
    .process-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
    
    .nav-desktop {
        display: block;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        align-items: center;
    }
    
    .hero-image {
        display: block;
    }
    
    .hero-image img {
        width: 100%;
        height: 450px;
        object-fit: cover;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-image img {
        height: 400px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr 1.2fr;
    }
    
    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .popup-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .content-grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
    
    .content-image img {
        height: 350px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    body {
        font-size: 15px;
    }
    
    .container {
        padding: 0 24px;
    }
    
    .hero-image img {
        height: 520px;
    }
    
    .section {
        padding: 100px 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonial-quote {
        font-size: 1.4rem;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 13px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.4rem; }
    
    .btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .service-card,
    .product-info,
    .contact-info,
    .contact-form-wrapper {
        padding: 20px 16px;
    }
}
