/* 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, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

/* Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: #8b5a3c;
}

/* Mobile Navigation */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 70px);
        background-color: #fff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s;
        gap: 0;
    }

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

    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid #eee;
    }

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f5f1ee 0%, #e8dfd8 100%);
    padding: 4rem 0;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.2;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #555;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

/* Page Hero */
.page-hero {
    background-color: #f5f1ee;
    padding: 3rem 0;
    text-align: center;
}

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

.page-hero p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #8b5a3c;
    color: #fff;
}

.btn-primary:hover {
    background-color: #6d4630;
}

.btn-secondary {
    background-color: transparent;
    color: #8b5a3c;
    border: 2px solid #8b5a3c;
}

.btn-secondary:hover {
    background-color: #8b5a3c;
    color: #fff;
}

.btn-link {
    color: #8b5a3c;
    font-weight: 600;
    text-decoration: underline;
}

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

section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

/* Company Intro */
.intro-grid {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.intro-visual {
    flex: 1;
}

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

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

.benefit-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

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

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    line-height: 1.6;
    color: #666;
}

/* Philosophy Section */
.philosophy {
    background-color: #f5f1ee;
}

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

.philosophy-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Statistics */
.statistics {
    background-color: #2c3e50;
    color: #fff;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.stat-item {
    text-align: center;
    min-width: 150px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #ccc;
}

/* Collection Grid */
.collection-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.collection-item {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
}

.collection-visual {
    background-color: #f5f1ee;
    border-radius: 8px;
    padding: 2rem;
    margin-bottom: 1rem;
    aspect-ratio: 4/3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.collection-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.collection-item p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    background-color: #f9f9f9;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.testimonial-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #555;
}

.testimonial-author {
    font-weight: 600;
    color: #8b5a3c;
}

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

.step {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    border-left: 4px solid #8b5a3c;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d4a574;
    margin-bottom: 1rem;
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step p {
    line-height: 1.6;
    color: #666;
}

/* Values */
.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.value-item {
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #8b5a3c;
}

.value-item p {
    line-height: 1.6;
    color: #666;
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background-color: #fff;
    text-align: left;
    font-weight: 600;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f9f9f9;
}

.faq-icon {
    font-size: 1.5rem;
    color: #8b5a3c;
    transition: transform 0.3s;
}

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

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

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

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    line-height: 1.6;
    color: #666;
}

/* CTA Section */
.cta {
    background-color: #8b5a3c;
    color: #fff;
    text-align: center;
}

.cta h2 {
    color: #fff;
}

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

/* Services */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s;
}

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

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

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

.service-card p {
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #8b5a3c;
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.benefit-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
}

.benefit-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #8b5a3c;
}

.benefit-item p {
    line-height: 1.6;
    color: #666;
}

/* Materials Grid */
.materials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.material-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.material-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.material-card p {
    line-height: 1.6;
    color: #666;
}

/* Contact */
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.contact-method {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

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

.contact-method h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-method p {
    line-height: 1.6;
    color: #666;
}

.contact-note {
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

/* Team Grid */
.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    line-height: 1.8;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.team-member {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.team-member h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #8b5a3c;
}

.team-member p {
    line-height: 1.6;
    color: #666;
}

/* Mission */
.mission-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

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

.principle-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    text-align: center;
    padding: 2rem;
}

.principle-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.principle-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.principle-item p {
    line-height: 1.6;
    color: #666;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: #8b5a3c;
    min-width: 100px;
}

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

.timeline-content p {
    line-height: 1.6;
    color: #666;
}

@media (max-width: 768px) {
    .timeline-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .timeline-year {
        font-size: 1.5rem;
    }
}

/* Achievements */
.achievements-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.achievement-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    text-align: center;
}

.achievement-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #8b5a3c;
}

.achievement-card p {
    line-height: 1.6;
    color: #666;
}

/* Thank You */
.thank-you-hero {
    padding: 4rem 0;
    background-color: #f5f1ee;
}

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

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

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.step-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.step-card .step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #8b5a3c;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.step-card p {
    line-height: 1.6;
    color: #666;
}

/* Meanwhile Options */
.meanwhile-options {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.option-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.option-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.option-card p {
    line-height: 1.6;
    color: #666;
    margin-bottom: 1rem;
}

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

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    text-align: left;
}

.legal-section h3 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-section ul,
.legal-section ol {
    margin-bottom: 1rem;
    margin-left: 2rem;
}

.legal-section ul {
    list-style: disc;
}

.legal-section ol {
    list-style: decimal;
}

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.cookies-table th,
.cookies-table td {
    padding: 0.75rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookies-table th {
    background-color: #f5f1ee;
    font-weight: 600;
}

/* Directions */
.directions h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.directions ul {
    list-style: none;
    margin-left: 0;
}

.directions li {
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

/* Details Grid */
.details-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.detail-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.detail-item h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #8b5a3c;
    font-weight: 600;
}

.detail-item p {
    line-height: 1.6;
    color: #666;
}

/* Hours Table */
.hours-table {
    margin: 2rem 0;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    border-bottom: 1px solid #e0e0e0;
}

.hours-row .day {
    font-weight: 600;
}

.hours-note {
    font-style: italic;
    color: #999;
    margin-top: 1rem;
}

/* Size Guide */
.size-content {
    max-width: 800px;
    margin: 0 auto;
}

.size-tips {
    margin-top: 2rem;
    padding: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.size-tips ul {
    list-style: disc;
    margin-left: 2rem;
}

.size-tips li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Care Grid */
.care-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.care-tip {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.care-tip h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.care-tip p {
    line-height: 1.6;
    color: #666;
}

/* Topics Grid */
.topics-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 1.5rem;
}

.topic {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
}

.topic h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #8b5a3c;
}

.topic p {
    line-height: 1.6;
    color: #666;
}

/* Footer */
footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-col p {
    line-height: 1.6;
    color: #ccc;
}

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

.footer-col a {
    color: #ccc;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #d4a574;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #445566;
    color: #999;
}

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

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

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

.cookie-content p {
    flex: 1;
}

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

.btn-accept,
.btn-settings,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #8b5a3c;
    color: #fff;
}

.btn-accept:hover {
    background-color: #6d4630;
}

.btn-settings {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-settings:hover {
    background-color: #fff;
    color: #2c3e50;
}

.btn-reject {
    background-color: transparent;
    color: #ccc;
}

.btn-reject:hover {
    color: #fff;
}

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

    .cookie-buttons {
        justify-content: center;
    }
}

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

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

.modal-content {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
}

.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;
}

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

.cookie-option span {
    font-weight: 600;
}

.cookie-option p {
    margin-left: 1.75rem;
    margin-top: 0.25rem;
    font-size: 0.9rem;
    color: #666;
}

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

.modal-buttons button {
    flex: 1;
}