/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5530;
    --secondary-color: #8b6914;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;
    --background-light: #f8f7f4;
    --background-cream: #faf9f6;
    --border-color: #e0ddd5;
    --white: #ffffff;
    --accent-warm: #d4a574;
    --success: #4a7c59;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    padding: 80px 30px 30px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s;
}

.nav-menu.active {
    right: 0;
}

.nav-menu li {
    margin-bottom: 1.5rem;
}

.nav-link {
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-color: var(--background-cream);
    padding: 3rem 0;
}

.hero-content {
    text-align: center;
}

.hero h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-visual {
    margin-top: 2rem;
}

.hero-visual img {
    margin: 0 auto;
}

/* Page Hero */
.page-hero {
    background-color: var(--background-cream);
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.15rem;
    color: var(--text-medium);
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #1e3c21;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #6d5310;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Sections */
section {
    padding: 4rem 0;
}

section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

section h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Company Intro */
.company-intro {
    background-color: var(--background-light);
}

.intro-text p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
}

/* Values */
.values-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 1.5rem;
}

.value-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.value-card h3 {
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Featured Products */
.products-showcase {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.product-feature {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.product-feature img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.product-feature-text h3 {
    margin-bottom: 1rem;
}

.product-feature-text p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.text-link {
    color: var(--primary-color);
    font-weight: 500;
    transition: color 0.3s;
}

.text-link:hover {
    color: var(--secondary-color);
}

/* Stats */
.stats {
    background-color: var(--primary-color);
    color: var(--white);
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* Philosophy */
.philosophy {
    background-color: var(--background-cream);
}

.philosophy-content p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
    color: var(--text-medium);
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
}

.testimonial-text {
    font-style: italic;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

/* Process */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: 8px;
}

.step-number {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-warm);
    margin-bottom: 1rem;
}

.process-step h3 {
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Knowledge Grid */
.knowledge-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.knowledge-item {
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: 8px;
}

.knowledge-item h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.knowledge-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem;
    background-color: var(--white);
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: var(--background-light);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    line-height: 1;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
}

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

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* CTA */
.cta {
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* Services */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.service-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.5rem;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.service-icon img {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.service-price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.15rem;
}

.service-category {
    margin-bottom: 3rem;
}

.category-description {
    color: var(--text-medium);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Benefits Grid */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: 8px;
}

.benefit-item h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.benefit-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Comparison */
.comparison-content {
    overflow-x: auto;
}

.comparison-row {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-color);
    margin-bottom: 1rem;
    background-color: var(--white);
}

.comparison-cell {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.comparison-cell:last-child {
    border-bottom: none;
}

.comparison-cell.heading {
    background-color: var(--background-light);
    font-weight: 600;
}

/* Contact */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card {
    padding: 2rem;
    background-color: var(--background-light);
    border-radius: 8px;
    text-align: center;
}

.contact-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
}

.contact-card h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-card p {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-card .note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

.about-store,
.directions {
    background-color: var(--background-cream);
}

.store-description p,
.direction-option p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.directions-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.direction-option h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.company-details p {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* Thank You */
.thank-you {
    padding: 5rem 0;
    text-align: center;
}

.thank-you-content {
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.thank-you h1 {
    margin-bottom: 1rem;
}

.thank-you p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.thank-you-info {
    background-color: var(--background-light);
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    text-align: center;
}

.info-item h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.info-item p {
    margin-bottom: 0.25rem;
    color: var(--text-medium);
}

/* Team */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
}

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

.team-role {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.team-member p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Principles */
.principles-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.principle-item {
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: 8px;
}

.principle-item h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.principle-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--border-color);
}

.timeline-item {
    position: relative;
}

.timeline-year {
    position: absolute;
    left: -2rem;
    top: 0;
    font-weight: 700;
    color: var(--primary-color);
    background-color: var(--white);
    padding: 0.25rem 0.5rem;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Partners Grid */
.partners-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.partner-item {
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: 8px;
}

.partner-item h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.partner-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

/* Values Statement */
.values-statement {
    background-color: var(--background-cream);
}

.statement-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.statement-box p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
    color: var(--text-medium);
    font-size: 1.05rem;
}

.mission {
    background-color: var(--background-light);
}

.mission-box {
    padding: 2rem;
    background-color: var(--background-cream);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.mission-box p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
}

/* Story */
.story-content p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
    color: var(--text-medium);
}

/* Legal Content */
.legal-text {
    max-width: 800px;
    margin: 0 auto;
}

.legal-text h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-text h4 {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.legal-text p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.legal-text ul {
    list-style: disc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-text ul li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: var(--text-medium);
}

.legal-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-text a:hover {
    color: var(--secondary-color);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.data-table th,
.data-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.data-table th {
    background-color: var(--background-light);
    font-weight: 600;
}

.data-table tr {
    background-color: var(--white);
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--white);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s;
    z-index: 200;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 300;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
}

.cookie-modal-content h3 {
    margin-bottom: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
}

.cookie-option p {
    margin-top: 0.5rem;
    margin-left: 2rem;
    font-size: 0.9rem;
    color: var(--text-medium);
    font-weight: normal;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Tablet Styles */
@media (min-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }

    .menu-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        flex-direction: row;
        width: auto;
        height: auto;
        padding: 0;
        box-shadow: none;
        background-color: transparent;
    }

    .nav-menu li {
        margin-bottom: 0;
        margin-left: 2rem;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat {
        flex: 1 1 calc(50% - 1rem);
    }

    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial {
        flex: 1 1 calc(50% - 1rem);
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-card {
        flex: 1;
    }

    .thank-you-actions {
        flex-direction: row;
        justify-content: center;
    }

    .info-grid {
        flex-direction: row;
    }

    .info-item {
        flex: 1;
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(33.333% - 2rem);
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-buttons {
        flex-wrap: nowrap;
    }

    .product-feature {
        flex-direction: row;
        align-items: center;
    }

    .product-feature.reverse {
        flex-direction: row-reverse;
    }

    .product-feature img {
        flex-shrink: 0;
        width: 300px;
    }

    .comparison-row {
        flex-direction: row;
    }

    .comparison-cell {
        flex: 1;
        border-right: 1px solid var(--border-color);
        border-bottom: none;
    }

    .comparison-cell:last-child {
        border-right: none;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .hero {
        padding: 5rem 0;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .page-hero h1 {
        font-size: 3rem;
    }

    .value-card {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .stat {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .testimonial {
        flex: 1 1 calc(33.333% - 1.34rem);
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1 1 calc(50% - 1rem);
    }

    .knowledge-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .knowledge-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-item {
        flex: 1 1 calc(33.333% - 1.34rem);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }

    .principles-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .principle-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .partners-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .partner-item {
        flex: 1 1 calc(50% - 1rem);
    }
}