@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Raleway:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #8B6E5D;
    --primary-dark: #6B5344;
    --secondary: #D4A574;
    --accent: #E8D5C4;
    --light: #FAF7F5;
    --dark: #3D3D3D;
    --text: #4A4A4A;
    --white: #FFFFFF;
    --shadow: rgba(139, 110, 93, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    background: var(--light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    color: var(--dark);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
}

.site-header.scrolled {
    position: fixed;
    background: var(--white);
    box-shadow: 0 2px 20px var(--shadow);
    padding: 10px 0;
}

.site-header.hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 1px;
}

.logo span {
    color: var(--secondary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--primary);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -8px);
}

.main-nav ul {
    display: flex;
    gap: 25px;
}

.main-nav a {
    font-size: 13px;
    font-weight: 500;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding: 5px 0;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: var(--white);
    opacity: 0.4;
    transform: rotate(-15deg);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
    padding: 80px 0;
}

.hero-subtitle {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark);
}

.hero p {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 25px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text);
    max-width: 500px;
    margin: 0 auto;
    font-size: 14px;
}

.section-divider {
    width: 50px;
    height: 2px;
    background: var(--secondary);
    margin: 15px auto 0;
}

.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    padding: 30px 20px;
    text-align: center;
    background: var(--light);
    border-radius: 5px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.service-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    background: var(--accent);
    border-radius: 50%;
    color: var(--primary);
    font-size: 20px;
}

.service-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 13px;
    color: var(--text);
}

.about-section {
    background: var(--light);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow);
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.about-content h2 {
    font-size: 26px;
    margin-bottom: 15px;
}

.about-content p {
    margin-bottom: 15px;
    font-size: 14px;
}

.about-features {
    margin-top: 20px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
}

.about-features i {
    color: var(--secondary);
    font-size: 14px;
}

.products {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--light);
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px var(--shadow);
}

.product-image {
    height: 200px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--primary);
}

.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.product-info p {
    font-size: 13px;
    color: var(--text);
    margin-bottom: 12px;
}

.product-price {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    color: var(--primary);
    font-weight: 600;
}

.testimonials {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: var(--white);
}

.testimonials .section-divider {
    background: var(--secondary);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 5px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-text {
    font-size: 16px;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--white);
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary);
}

.cta-section {
    background: var(--accent);
    text-align: center;
}

.cta-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.cta-section p {
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.process {
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    text-align: center;
    padding: 20px 15px;
}

.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    background: var(--secondary);
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50%;
}

.process-step h3 {
    font-size: 15px;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 12px;
    color: var(--text);
}

.site-footer {
    background: var(--dark);
    color: var(--white);
    padding: 30px 0 15px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-brand .logo {
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 250px;
}

.footer-links h4 {
    font-size: 14px;
    margin-bottom: 12px;
    color: var(--white);
}

.footer-links ul li {
    margin-bottom: 6px;
}

.footer-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 6px;
}

.footer-contact i {
    color: var(--secondary);
    font-size: 12px;
    width: 16px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.policy-links {
    display: flex;
    gap: 15px;
}

.policy-links a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.policy-links a:hover {
    color: var(--secondary);
}

.page-hero {
    padding: 120px 0 50px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--light) 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.page-hero p {
    color: var(--text);
    font-size: 14px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 12px;
}

.breadcrumb a {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--text);
}

.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info-card {
    background: var(--light);
    padding: 30px;
    border-radius: 5px;
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: 50%;
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
}

.contact-item-text h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.contact-item-text p {
    font-size: 13px;
    color: var(--text);
}

.map-container {
    margin-top: 20px;
    border-radius: 5px;
    overflow: hidden;
    height: 180px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form-card {
    background: var(--light);
    padding: 30px;
    border-radius: 5px;
}

.contact-form-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 14px;
    font-family: 'Raleway', sans-serif;
    font-size: 13px;
    border: 1px solid var(--accent);
    border-radius: 3px;
    background: var(--white);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    width: auto;
    margin-top: 3px;
}

.form-checkbox label {
    font-size: 11px;
    margin-bottom: 0;
    color: var(--text);
}

.form-checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

.about-page-content {
    background: var(--white);
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 50px;
}

.about-intro-image img {
    border-radius: 5px;
    height: 300px;
    object-fit: cover;
}

.about-intro-text h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.about-intro-text p {
    font-size: 14px;
    margin-bottom: 12px;
}

.values-section {
    background: var(--light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.value-card {
    text-align: center;
    padding: 25px 20px;
    background: var(--white);
    border-radius: 5px;
}

.value-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    background: var(--accent);
    border-radius: 50%;
    color: var(--primary);
    font-size: 20px;
}

.value-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 13px;
    color: var(--text);
}

.service-page-content {
    background: var(--white);
}

.service-intro {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

.service-intro-text h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.service-intro-text p {
    font-size: 14px;
    margin-bottom: 12px;
}

.service-intro-image img {
    border-radius: 5px;
    height: 280px;
    object-fit: cover;
}

.service-benefits {
    background: var(--light);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: var(--white);
    border-radius: 5px;
}

.benefit-item i {
    color: var(--secondary);
    font-size: 20px;
    flex-shrink: 0;
}

.benefit-item h4 {
    font-size: 14px;
    margin-bottom: 5px;
}

.benefit-item p {
    font-size: 12px;
    color: var(--text);
}

.thank-you-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--light) 100%);
    text-align: center;
    padding: 100px 20px;
}

.thank-you-content {
    max-width: 500px;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: var(--secondary);
    border-radius: 50%;
    color: var(--white);
    font-size: 36px;
}

.thank-you-content h1 {
    font-size: 30px;
    margin-bottom: 15px;
}

.thank-you-content p {
    font-size: 14px;
    margin-bottom: 25px;
}

.error-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent) 0%, var(--light) 100%);
    text-align: center;
    padding: 100px 20px;
}

.error-content {
    max-width: 500px;
}

.error-code {
    font-family: 'Playfair Display', serif;
    font-size: 100px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 15px;
}

.error-content h1 {
    font-size: 26px;
    margin-bottom: 15px;
}

.error-content p {
    font-size: 14px;
    margin-bottom: 25px;
}

.policy-page {
    background: var(--white);
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    font-size: 20px;
    margin: 30px 0 15px;
}

.policy-content h3 {
    font-size: 16px;
    margin: 25px 0 12px;
}

.policy-content p {
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.7;
}

.policy-content ul {
    margin: 10px 0 15px 20px;
}

.policy-content li {
    font-size: 13px;
    margin-bottom: 6px;
    position: relative;
    padding-left: 15px;
}

.policy-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--secondary);
}

.policy-date {
    font-size: 12px;
    color: var(--text);
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--accent);
}

.privacy-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: var(--white);
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: none;
}

.privacy-popup.active {
    display: block;
}

.privacy-popup h4 {
    font-size: 15px;
    margin-bottom: 10px;
}

.privacy-popup p {
    font-size: 12px;
    margin-bottom: 15px;
    color: var(--text);
}

.privacy-popup-buttons {
    display: flex;
    gap: 10px;
}

.privacy-popup .btn {
    padding: 8px 16px;
    font-size: 11px;
}

@media (max-width: 992px) {
    .services-grid,
    .products-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .contact-grid,
    .about-intro,
    .service-intro {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-image {
        order: -1;
    }
    
    .hero h1 {
        font-size: 34px;
    }
}

@media (max-width: 814px) {
    .nav-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        padding: 70px 30px 30px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 30px var(--shadow);
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-nav li {
        border-bottom: 1px solid var(--accent);
    }
    
    .main-nav a {
        display: block;
        padding: 12px 0;
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-brand p {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .services-grid,
    .products-grid,
    .values-grid,
    .benefits-list {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .hero h1 {
        font-size: 24px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .page-hero {
        padding: 100px 0 40px;
    }
    
    .page-hero h1 {
        font-size: 26px;
    }
    
    .error-code {
        font-size: 70px;
    }
    
    .privacy-popup {
        left: 10px;
        right: 10px;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 13px;
    }
    
    .logo {
        font-size: 18px;
    }
    
    .hero h1 {
        font-size: 22px;
    }
    
    .section-header h2 {
        font-size: 20px;
    }
    
    .service-card,
    .product-card,
    .value-card {
        padding: 20px 15px;
    }
}
