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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #fff;
}

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

a {
    color: #6b4423;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #4a2e16;
}

ul {
    list-style: none;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.header {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #6b4423;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    color: #2c2c2c;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #6b4423;
}

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2c2c2c;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 70px);
        background: #fff;
        flex-direction: column;
        padding: 30px;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        gap: 20px;
    }

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

    .menu-toggle {
        display: flex;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

/* Typography */
h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 700;
}

h2 {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #2c2c2c;
    font-weight: 700;
}

h3 {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 12px;
    color: #2c2c2c;
    font-weight: 600;
}

h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c2c2c;
    font-weight: 600;
}

p {
    margin-bottom: 16px;
}

.lead {
    font-size: 20px;
    color: #4a4a4a;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 16px;
}

.btn-primary {
    background: #6b4423;
    color: #fff;
    border-color: #6b4423;
}

.btn-primary:hover {
    background: #4a2e16;
    border-color: #4a2e16;
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: #6b4423;
    border-color: #6b4423;
}

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

.btn-small {
    padding: 8px 20px;
    font-size: 14px;
}

.link-arrow::after {
    content: ' →';
    transition: transform 0.3s ease;
    display: inline-block;
}

.link-arrow:hover::after {
    transform: translateX(4px);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f1ed 0%, #e8dfd5 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-visual {
    flex: 1;
}

.hero-visual img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero .container {
        flex-direction: column;
        gap: 40px;
    }

    h1 {
        font-size: 32px;
    }
}

/* Page Hero */
.page-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f1ed 0%, #e8dfd5 100%);
    text-align: center;
}

.page-hero .lead {
    max-width: 700px;
    margin: 0 auto;
}

/* Sections */
section {
    padding: 80px 0;
}

section.alt {
    background: #fafafa;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 40px;
    text-align: center;
    color: #4a4a4a;
}

/* Philosophy Section */
.philosophy {
    text-align: center;
}

.philosophy-grid {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.philosophy-item {
    flex: 1;
    text-align: center;
}

.philosophy-item img {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

@media (max-width: 768px) {
    .philosophy-grid {
        flex-direction: column;
    }
}

/* Collection Cards */
.collection-cards {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.collection-card {
    flex: 1;
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.collection-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .collection-cards {
        flex-direction: column;
    }
}

/* Story Section */
.story .container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-content {
    flex: 1.5;
}

.story-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat {
    background: #f5f1ed;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #6b4423;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 14px;
    color: #4a4a4a;
}

@media (max-width: 768px) {
    .story .container {
        flex-direction: column;
    }
}

/* Benefits Section */
.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.benefit {
    flex: 1 1 calc(50% - 15px);
    background: #fff;
    padding: 30px;
    border-left: 4px solid #6b4423;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

@media (max-width: 768px) {
    .benefit {
        flex: 1 1 100%;
    }
}

/* Testimonials */
.testimonials {
    background: #fafafa;
    text-align: center;
}

.testimonial-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.testimonial {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.testimonial p {
    font-style: italic;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: #6b4423;
    font-size: 14px;
}

@media (max-width: 768px) {
    .testimonial-grid {
        flex-direction: column;
    }
}

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.step,
.process-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number,
.step-num {
    min-width: 50px;
    height: 50px;
    background: #6b4423;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step div,
.process-step div {
    flex: 1;
}

/* Age Guide Cards */
.age-cards {
    display: flex;
    gap: 25px;
    margin-top: 40px;
}

.age-card {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    border-top: 4px solid #6b4423;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

@media (max-width: 768px) {
    .age-cards {
        flex-direction: column;
    }
}

/* FAQ Section */
.faq {
    background: #fafafa;
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    margin-bottom: 15px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #2c2c2c;
    transition: background 0.3s ease;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: #6b4423;
    transition: transform 0.3s ease;
}

.faq-question:hover {
    background: #f5f1ed;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding: 0 25px 20px;
    color: #4a4a4a;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #6b4423 0%, #4a2e16 100%);
    color: #fff;
    text-align: center;
}

.cta h2 {
    color: #fff;
}

.cta p {
    color: #e5e5e5;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Footer */
.footer {
    background: #2c2c2c;
    color: #e5e5e5;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer h4 {
    color: #fff;
    margin-bottom: 15px;
}

.footer a {
    color: #e5e5e5;
    display: block;
    margin-bottom: 8px;
}

.footer a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #999;
    font-size: 14px;
}

@media (max-width: 768px) {
    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c2c2c;
    color: #fff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-options {
    margin: 30px 0;
}

.cookie-options label {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    margin-bottom: 10px;
    background: #f5f5f5;
    border-radius: 4px;
    cursor: pointer;
}

.cookie-options input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* Product Grid */
.products {
    background: #fff;
}

.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    flex: 1 1 calc(33.333% - 20px);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.product-image {
    width: 100%;
    height: 250px;
    background: #f5f1ed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 80%;
    height: 80%;
    object-fit: contain;
}

.product-card h3 {
    padding: 20px 20px 10px;
}

.product-card p {
    padding: 0 20px;
    color: #4a4a4a;
    font-size: 14px;
}

.price {
    padding: 10px 20px 20px;
    font-size: 24px;
    font-weight: 700;
    color: #6b4423;
}

@media (max-width: 768px) {
    .product-card {
        flex: 1 1 100%;
    }
}

/* Benefits Grid */
.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    flex: 1 1 calc(33.333% - 20px);
    text-align: center;
    padding: 30px 20px;
}

.benefit-item img {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

@media (max-width: 768px) {
    .benefit-item {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (max-width: 480px) {
    .benefit-item {
        flex: 1 1 100%;
    }
}

/* Comparison Table */
.comparison {
    background: #fafafa;
}

.comparison-table {
    max-width: 800px;
    margin: 40px auto 0;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.comparison-row {
    display: flex;
}

.comparison-cell {
    flex: 1;
    padding: 20px;
    border-bottom: 1px solid #e5e5e5;
}

.comparison-cell.header {
    font-weight: 700;
    background: #f5f1ed;
}

.comparison-cell.highlight {
    background: #fff8f3;
    color: #6b4423;
    font-weight: 600;
}

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

@media (max-width: 768px) {
    .comparison-row {
        flex-direction: column;
    }
}

/* Contact Section */
.contact-info {
    padding: 60px 0;
}

.contact-grid {
    display: flex;
    gap: 30px;
}

.contact-card {
    flex: 1;
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
}

.contact-card img {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
}

.contact-card a {
    color: #6b4423;
    font-weight: 600;
}

.small-text {
    font-size: 14px;
    color: #666;
}

@media (max-width: 768px) {
    .contact-grid {
        flex-direction: column;
    }
}

/* About Location */
.about-location .container,
.location-content {
    display: flex;
    gap: 60px;
    align-items: center;
}

.location-text {
    flex: 1.5;
}

.location-image {
    flex: 1;
}

@media (max-width: 768px) {
    .about-location .container,
    .location-content {
        flex-direction: column;
    }
}

/* Directions */
.directions-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.direction-method {
    flex: 1;
    background: #f5f1ed;
    padding: 30px;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .directions-grid {
        flex-direction: column;
    }
}

/* Company Info */
.company-info-section {
    background: #fafafa;
}

.company-details {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.company-detail {
    flex: 1 1 calc(50% - 15px);
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

@media (max-width: 768px) {
    .company-detail {
        flex: 1 1 100%;
    }
}

/* Values Grid */
.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.value-card img {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .value-card {
        flex: 1 1 100%;
    }
}

/* Team Grid */
.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    flex: 1 1 calc(50% - 15px);
    text-align: center;
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #f5f1ed;
    margin: 0 auto 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-role {
    color: #6b4423;
    font-weight: 600;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .team-member {
        flex: 1 1 100%;
    }
}

/* Timeline */
.timeline {
    max-width: 800px;
    margin: 40px auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 60px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e5e5e5;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-year {
    min-width: 60px;
    font-weight: 700;
    color: #6b4423;
    font-size: 18px;
    position: relative;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -16px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #6b4423;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-year {
        min-width: 40px;
        font-size: 16px;
    }
}

/* Approach Section */
.approach-content {
    max-width: 900px;
    margin: 0 auto;
}

.principle {
    margin-top: 40px;
    padding: 30px;
    background: #f5f1ed;
    border-radius: 8px;
}

/* Impact Stats */
.impact-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.impact-stat {
    flex: 1 1 calc(33.333% - 20px);
    background: #f5f1ed;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.impact-stat .stat-number {
    font-size: 48px;
}

@media (max-width: 768px) {
    .impact-stat {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (max-width: 480px) {
    .impact-stat {
        flex: 1 1 100%;
    }
}

/* Future Goals */
.future-goals {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.goal {
    flex: 1 1 calc(50% - 15px);
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border-top: 4px solid #6b4423;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

@media (max-width: 768px) {
    .goal {
        flex: 1 1 100%;
    }
}

/* Thank You Page */
.thank-you-hero {
    text-align: center;
    padding: 100px 0;
}

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

.thank-you-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
}

.next-steps {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.next-step {
    flex: 1;
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #6b4423;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

@media (max-width: 768px) {
    .next-steps {
        flex-direction: column;
    }
}

.explore-cards {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.explore-card {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
}

.explore-card img {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

@media (max-width: 768px) {
    .explore-cards {
        flex-direction: column;
    }
}

/* Legal Pages */
.legal-page {
    padding: 60px 0;
}

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 30px;
}

.legal-content h2 {
    margin-top: 40px;
}

.legal-content h3 {
    margin-top: 30px;
}

.legal-content ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 10px;
    color: #4a4a4a;
}

.cookie-table {
    width: 100%;
    margin: 20px 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e5e5e5;
}

.cookie-table th {
    background: #f5f1ed;
    font-weight: 600;
}

/* Story Layout */
.story-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-top: 40px;
}

.story-text {
    flex: 1.5;
}

.story-image {
    flex: 1;
}

@media (max-width: 768px) {
    .story-layout {
        flex-direction: column;
    }
}

/* Workshop Visits */
.workshop-visits {
    background: #fafafa;
}

.visit-info {
    max-width: 800px;
    margin: 30px auto 0;
}

/* Newsletter */
.newsletter {
    background: #f5f1ed;
    text-align: center;
}

/* Process Section */
.process-section {
    background: #fafafa;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 26px;
    }

    h3 {
        font-size: 20px;
    }

    .lead {
        font-size: 18px;
    }
}

/* Utilities */
.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}