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

:root {
    --primary: #2c1810;
    --accent: #c97a3a;
    --light: #f5f1ed;
    --text: #333;
    --text-light: #666;
    --border: #ddd;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.15);
}

html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; color: var(--text); line-height: 1.6; background: var(--light); }
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; }
a { color: var(--accent); text-decoration: none; transition: color 0.3s ease; }
a:hover { color: var(--primary); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }

/* Header */
.site-header { background: var(--primary); color: white; position: sticky; top: 0; z-index: 100; box-shadow: var(--shadow); }
.header-top { background: rgba(255,255,255,0.05); padding: 10px 0; font-size: 0.85rem; }
.header-top-inner { display: flex; gap: 24px; justify-content: flex-start; }
.header-top a { color: rgba(255,255,255,0.8); transition: color 0.3s; }
.header-top a:hover { color: var(--accent); }

.header-main { padding: 20px 0; }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 12px; color: white; font-weight: 700; font-size: 1.3rem; }
.logo-emblem { width: 40px; height: 40px; background: var(--accent); border-radius: 4px; display: flex; align-items: center; justify-content: center; }
.logo-emblem svg { width: 24px; height: 24px; stroke: white; stroke-width: 2; fill: none; }
.logo span { font-size: 0.7rem; display: block; font-weight: 400; color: rgba(255,255,255,0.7); }

.main-nav { display: flex; gap: 32px; }
.main-nav a { color: rgba(255,255,255,0.8); font-size: 0.95rem; transition: color 0.3s; }
.main-nav a:hover, .main-nav a.active { color: var(--accent); }

.hamburger { display: none; background: none; border: none; cursor: pointer; color: white; font-size: 1.5rem; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; margin: 6px 0; transition: 0.3s; }

@media (max-width: 768px) {
    .main-nav { display: none; }
    .hamburger { display: block; }
}

/* Hero Section */
.hero { background: linear-gradient(135deg, rgba(44,24,16,0.8) 0%, rgba(201,122,58,0.6) 100%), url('../images/hero.jpg') center/cover no-repeat; color: white; padding: 120px 0; text-align: center; position: relative; }
.hero h1 { font-size: 3.5rem; margin-bottom: 20px; }
.hero p { font-size: 1.3rem; margin-bottom: 40px; opacity: 0.95; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn { display: inline-block; padding: 14px 32px; border-radius: 4px; font-weight: 600; transition: all 0.3s ease; border: 2px solid transparent; cursor: pointer; font-size: 0.95rem; }
.btn-primary { background: var(--accent); color: white; border-color: var(--accent); }
.btn-primary:hover { background: var(--primary); border-color: var(--primary); }
.btn-secondary { background: transparent; color: white; border-color: white; }
.btn-secondary:hover { background: white; color: var(--primary); }

/* Stats Strip */
.stats-strip { background: var(--primary); color: white; padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat-item h3 { font-size: 2.5rem; color: var(--accent); margin-bottom: 8px; }
.stat-item p { font-size: 0.95rem; opacity: 0.8; }
@media (max-width: 768px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }

/* About Section */
.about-section { background: white; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { width: 100%; height: 400px; object-fit: cover; border-radius: 4px; box-shadow: var(--shadow-lg); }
.label-tag { display: inline-block; background: var(--accent); color: white; font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; margin-bottom: 16px; }
.about-section h2 { font-size: 2.2rem; margin-bottom: 20px; color: var(--primary); }
.about-section p { color: var(--text-light); margin-bottom: 16px; line-height: 1.8; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }

/* Services Section */
.services-section { background: var(--light); }
.section-title { font-size: 2.5rem; text-align: center; margin-bottom: 16px; color: var(--primary); }
.section-subtitle { text-align: center; color: var(--text-light); font-size: 1.1rem; margin-bottom: 60px; max-width: 600px; margin-left: auto; margin-right: auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.service-card { background: white; padding: 40px; border-radius: 4px; box-shadow: var(--shadow); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-icon { width: 60px; height: 60px; background: var(--accent); border-radius: 4px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-icon svg { width: 32px; height: 32px; stroke: white; stroke-width: 2; fill: none; }
.service-card h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--primary); }
.service-card p { color: var(--text-light); font-size: 0.95rem; }
@media (max-width: 768px) { .services-grid { grid-template-columns: 1fr; } }

/* Process Section */
.process-section { background: white; }
.process-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; position: relative; }
.timeline-step { text-align: center; }
.timeline-dot { width: 80px; height: 80px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.timeline-dot svg { width: 40px; height: 40px; stroke: white; stroke-width: 2; fill: none; }
.timeline-step h3 { font-size: 1.1rem; margin-bottom: 12px; color: var(--primary); }
.timeline-step p { color: var(--text-light); font-size: 0.9rem; }
@media (max-width: 768px) { .process-timeline { grid-template-columns: repeat(2, 1fr); } }

/* Products/Gallery Section */
.gallery-section { background: var(--light); }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gallery-item { background: white; border-radius: 4px; overflow: hidden; box-shadow: var(--shadow); transition: transform 0.3s ease; }
.gallery-item:hover { transform: scale(1.05); }
.gallery-item img { width: 100%; height: 300px; object-fit: cover; }
.gallery-item-text { padding: 20px; }
.gallery-item h4 { color: var(--primary); margin-bottom: 8px; }
.gallery-item p { color: var(--text-light); font-size: 0.9rem; }
@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }

/* Testimonials */
.testimonials-section { background: white; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.testimonial-card { background: var(--light); padding: 32px; border-radius: 4px; border-left: 4px solid var(--accent); }
.testimonial-stars { color: var(--accent); margin-bottom: 12px; font-size: 1.1rem; }
.testimonial-text { color: var(--text); margin-bottom: 16px; font-style: italic; }
.testimonial-author { font-weight: 600; color: var(--primary); }
.testimonial-role { color: var(--text-light); font-size: 0.9rem; }
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* CTA Section */
.cta-section { background: var(--primary); color: white; padding: 80px 0; text-align: center; }
.cta-section h2 { font-size: 2.5rem; margin-bottom: 16px; }
.cta-section p { font-size: 1.1rem; margin-bottom: 40px; opacity: 0.9; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* FAQ Section */
.faq-item { background: white; margin-bottom: 16px; border-radius: 4px; overflow: hidden; box-shadow: var(--shadow); }
.faq-question { padding: 20px; background: var(--light); cursor: pointer; font-weight: 600; color: var(--primary); display: flex; justify-content: space-between; align-items: center; transition: background 0.3s; }
.faq-question:hover { background: #ede8e3; }
.faq-answer { padding: 20px; display: none; color: var(--text-light); }
.faq-answer.active { display: block; }

/* Footer */
.site-footer { background: var(--primary); color: rgba(255,255,255,0.8); padding: 60px 0 20px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; margin-bottom: 40px; }
.footer-section h4 { color: white; margin-bottom: 16px; font-size: 1rem; }
.footer-section ul { list-style: none; }
.footer-section li { margin-bottom: 10px; }
.footer-section a { color: rgba(255,255,255,0.7); transition: color 0.3s; }
.footer-section a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; font-size: 0.9rem; }
.footer-legal { margin-top: 16px; display: flex; gap: 24px; justify-content: center; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }

/* Cookie Popup */
.cookie-popup { position: fixed; bottom: 20px; right: 20px; background: var(--primary); color: white; padding: 24px; border-radius: 4px; box-shadow: var(--shadow-lg); max-width: 320px; z-index: 1000; display: none; }
.cookie-popup.active { display: block; animation: slideIn 0.3s ease; }
@keyframes slideIn { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-popup h4 { margin-bottom: 12px; font-size: 1rem; }
.cookie-popup p { font-size: 0.85rem; margin-bottom: 16px; line-height: 1.5; }
.cookie-popup a { color: var(--accent); }
.cookie-actions { display: flex; gap: 10px; }
.btn-cookie-accept, .btn-cookie-decline { flex: 1; padding: 8px 12px; border: none; border-radius: 3px; cursor: pointer; font-size: 0.8rem; font-weight: 600; transition: all 0.3s; }
.btn-cookie-accept { background: var(--accent); color: white; }
.btn-cookie-accept:hover { background: #b86a2a; }
.btn-cookie-decline { background: rgba(255,255,255,0.2); color: white; }
.btn-cookie-decline:hover { background: rgba(255,255,255,0.3); }

/* Breadcrumb */
.breadcrumb { font-size: 0.9rem; margin-bottom: 24px; }
.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: var(--text-light); margin: 0 8px; }

/* Page Hero */
.page-hero { background: linear-gradient(135deg, rgba(44,24,16,0.85) 0%, rgba(201,122,58,0.5) 100%), url('../images/hero.jpg') center/cover no-repeat; color: white; padding: 80px 0; text-align: center; }
.page-hero h1 { font-size: 2.8rem; margin-bottom: 12px; }
.page-hero p { font-size: 1.1rem; opacity: 0.9; }

/* Contact Form */
.contact-section { background: white; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info { }
.contact-details { margin-top: 40px; }
.contact-detail { display: flex; gap: 20px; margin-bottom: 32px; }
.contact-detail-icon { width: 50px; height: 50px; background: var(--accent); border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 24px; height: 24px; stroke: white; stroke-width: 2; fill: none; }
.contact-detail strong { color: var(--primary); display: block; margin-bottom: 4px; }
.contact-detail p { color: var(--text-light); }

.contact-form h3 { color: var(--primary); margin-bottom: 16px; }
.contact-form p { color: var(--text-light); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; color: var(--primary); }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px; border: 1px solid var(--border); border-radius: 4px; font-family: inherit; font-size: 0.95rem; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(201,122,58,0.1); }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* Legal Pages */
.legal-content { background: white; padding: 40px; border-radius: 4px; }
.legal-meta { background: var(--light); padding: 16px; border-radius: 4px; margin-bottom: 32px; font-size: 0.9rem; }
.legal-content h2 { font-size: 1.5rem; margin-top: 32px; margin-bottom: 16px; color: var(--primary); }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { margin-bottom: 16px; line-height: 1.8; color: var(--text); }
.legal-content ul { margin-left: 24px; margin-bottom: 16px; }
.legal-content li { margin-bottom: 8px; color: var(--text); }
