@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Outfit:wght@300;400;500;600&display=swap');

:root {
    --primary: #8b7355;
    --primary-dark: #6d5a45;
    --primary-light: #a89070;
    --secondary: #2c2c2c;
    --accent: #d4c4b0;
    --bg-cream: #faf8f5;
    --bg-light: #f5f2ed;
    --text-dark: #1a1a1a;
    --text-muted: #666;
    --white: #fff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-cream);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: clamp(1.8rem, 5vw, 2.8rem); }
h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header span {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 8px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(10px);
    transform: translateY(0);
    transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.site-header.scrolled {
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
}

.logo span {
    color: var(--primary);
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    gap: 28px;
}

.nav-desktop a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.header-cta {
    display: none;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.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);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-cream);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-nav a {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 600;
}

.mobile-nav a:hover {
    color: var(--primary);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 560px;
}

.hero h1 {
    margin-bottom: 16px;
    color: var(--secondary);
}

.hero p {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.services-section {
    padding: 60px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    gap: 20px;
}

.service-card {
    padding: 24px;
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 20px;
    margin-bottom: 16px;
}

.service-card h3 {
    margin-bottom: 8px;
}

.service-card p {
    font-size: 13px;
    color: var(--text-muted);
}

.about-preview {
    padding: 60px 0;
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    gap: 32px;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.about-content h2 {
    margin-bottom: 16px;
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 13px;
}

.about-stats {
    display: flex;
    gap: 24px;
    margin-top: 20px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-section {
    padding: 60px 0;
    background: var(--white);
}

.process-timeline {
    display: grid;
    gap: 24px;
}

.process-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50%;
}

.step-content h3 {
    margin-bottom: 6px;
}

.step-content p {
    font-size: 13px;
    color: var(--text-muted);
}

.testimonials-section {
    padding: 60px 0;
    background: var(--secondary);
    color: var(--white);
}

.testimonials-section .section-header span {
    color: var(--accent);
}

.testimonials-section h2 {
    color: var(--white);
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 16px;
    font-size: 13px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.author-info h4 {
    font-size: 14px;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 11px;
    color: var(--accent);
}

.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 12px;
}

.cta-section p {
    margin-bottom: 24px;
    opacity: 0.9;
    font-size: 14px;
}

.cta-section .btn {
    background: var(--white);
    color: var(--primary);
}

.cta-section .btn:hover {
    background: var(--bg-cream);
    transform: translateY(-2px);
}

.site-footer {
    background: var(--secondary);
    color: var(--white);
    padding: 32px 0 16px;
}

.footer-top {
    display: grid;
    gap: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--white);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-contact p {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.footer-contact i {
    color: var(--primary-light);
    width: 16px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
    text-align: center;
}

.copyright {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

.policy-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.policy-links a {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

.policy-links a:hover {
    color: var(--accent);
}

.page-hero {
    padding: 100px 0 50px;
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light) 100%);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 12px;
}

.page-hero p {
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto;
    font-size: 14px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 12px;
}

.breadcrumb a {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--text-muted);
}

.content-section {
    padding: 50px 0;
}

.content-section:nth-child(even) {
    background: var(--bg-light);
}

.content-grid {
    display: grid;
    gap: 32px;
    align-items: center;
}

.content-text h2 {
    margin-bottom: 16px;
}

.content-text p {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 12px;
}

.content-text ul {
    margin: 16px 0;
}

.content-text li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.content-text li i {
    color: var(--primary);
    margin-top: 4px;
}

.products-section {
    padding: 50px 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    gap: 20px;
}

.product-card {
    background: var(--bg-cream);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 180px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--primary);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 8px;
}

.product-info p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.team-section {
    padding: 50px 0;
}

.team-grid {
    display: grid;
    gap: 20px;
}

.team-card {
    text-align: center;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.team-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary);
}

.team-card h3 {
    margin-bottom: 4px;
}

.team-card .role {
    font-size: 12px;
    color: var(--primary);
    margin-bottom: 12px;
}

.team-card p {
    font-size: 12px;
    color: var(--text-muted);
}

.contact-section {
    padding: 50px 0;
    background: var(--bg-light);
}

.contact-wrapper {
    display: grid;
    gap: 32px;
}

.contact-info {
    background: var(--secondary);
    color: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-item i {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-item p, .contact-item a {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.contact-form-wrapper h3 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    border: 1px solid var(--accent);
    border-radius: var(--radius);
    background: var(--bg-cream);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    font-size: 11px;
    color: var(--text-muted);
    margin: 0;
}

.map-section {
    padding: 50px 0;
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.error-page,
.thankyou-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 16px;
    height: 100vh;
}

.error-icon,
.success-icon {
    font-size: 64px;
    color: var(--primary);
    margin-bottom: 20px;
}

.error-page h1,
.thankyou-page h1 {
    margin-bottom: 12px;
}

.error-page p,
.thankyou-page p {
    color: var(--text-muted);
    margin: 0 auto;
    margin-bottom: 24px;
    max-width: 400px;
}

.policy-content {
    padding: 50px 0;
}

.policy-text {
    max-width: 800px;
    margin: 0 auto;
}

.policy-text h2 {
    margin: 32px 0 16px;
    padding-top: 24px;
    border-top: 1px solid var(--accent);
}

.policy-text h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.policy-text p {
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 13px;
}

.policy-text ul {
    margin: 12px 0 12px 20px;
    list-style: disc;
}

.policy-text li {
    color: var(--text-muted);
    font-size: 13px;
    margin-bottom: 8px;
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    color: var(--white);
    padding: 16px;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
}

.cookie-btns .btn {
    padding: 8px 20px;
    font-size: 12px;
}

.faq-section {
    padding: 50px 0;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    font-size: 13px;
}

.faq-question i {
    transition: var(--transition);
    color: var(--primary);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 20px 16px;
    font-size: 13px;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.features-grid {
    display: grid;
    gap: 16px;
}

.feature-item {
    display: flex;
    gap: 12px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.feature-text h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.feature-text p {
    font-size: 12px;
    color: var(--text-muted);
}

.values-section {
    padding: 50px 0;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    gap: 20px;
}

.value-card {
    text-align: center;
    padding: 24px 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
}

.value-card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 16px;
}

.value-card h3 {
    margin-bottom: 8px;
}

.value-card p {
    font-size: 12px;
    color: var(--text-muted);
}

@media (min-width: 480px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    body {
        font-size: 15px;
    }

    .nav-desktop {
        display: block;
    }

    .header-cta {
        display: inline-flex;
    }

    .menu-toggle {
        display: none;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-content {
        max-width: 50%;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr 1.2fr;
    }

    .content-grid {
        grid-template-columns: 1fr 1fr;
    }

    .content-section:nth-child(even) .content-grid {
        direction: rtl;
    }

    .content-section:nth-child(even) .content-grid > * {
        direction: ltr;
    }

    .footer-top {
        grid-template-columns: 2fr 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content {
        flex-direction: row;
        text-align: left;
    }

    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 24px;
    }

    .hero-content {
        max-width: 520px;
    }

    .nav-desktop ul {
        gap: 36px;
    }
}
