/* ===================================
   CSS RESET & BASE
   =================================== */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #34495e;
}

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

ul {
    list-style: none;
}

/* ===================================
   TYPOGRAPHY
   =================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #2c3e50;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    color: #7f8c8d;
}

/* ===================================
   LAYOUT
   =================================== */

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

section {
    padding: 4rem 0;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #ecf0f1;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.nav-link {
    font-weight: 500;
    position: relative;
}

.nav-link.active::after,
.nav-link:hover::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2c3e50;
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
}

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

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

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

    .nav-link::after {
        display: none;
    }
}

/* ===================================
   HERO SECTION
   =================================== */

.hero {
    background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    color: #ffffff;
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    color: #ffffff;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #ecf0f1;
}

.page-hero {
    background-color: #34495e;
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    color: #ffffff;
}

.page-hero .lead {
    color: #ecf0f1;
}

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: #2c3e50;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #34495e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.btn-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.btn-small {
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
}

/* ===================================
   SECTIONS
   =================================== */

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-intro {
    text-align: center;
    font-size: 1.125rem;
    color: #7f8c8d;
    max-width: 800px;
    margin: 0 auto 2rem;
}

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

.philosophy-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

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

.philosophy-icon {
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.philosophy-icon svg {
    margin: 0 auto;
}

/* Featured Collection */
.featured-collection {
    background-color: #ecf0f1;
}

.featured-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.featured-text,
.featured-visual {
    flex: 1 1 400px;
}

.featured-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #7f8c8d;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.featured-visual svg {
    max-width: 100%;
    height: auto;
}

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

.benefit-card {
    flex: 1 1 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Story Section */
.story {
    background-color: #ffffff;
}

.story-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.story-text,
.story-image {
    flex: 1 1 400px;
}

.story-image svg {
    max-width: 100%;
    height: auto;
}

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

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

.stat-item {
    text-align: center;
    flex: 1 1 200px;
}

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

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

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

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

.testimonial-card {
    flex: 1 1 300px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
    color: #2c3e50;
}

.testimonial-author span {
    font-size: 0.875rem;
    color: #7f8c8d;
}

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

.process-step {
    flex: 1 1 250px;
    text-align: center;
}

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

/* Values Section */
.values-content,
.values-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.value-item,
.value-block {
    flex: 1 1 300px;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

/* CTA Section */
.cta {
    background-color: #34495e;
    color: #ffffff;
    text-align: center;
    padding: 5rem 0;
}

.cta h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta p {
    color: #ecf0f1;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* ===================================
   SERVICES PAGE
   =================================== */

.services-intro {
    background-color: #f8f9fa;
    text-align: center;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: #34495e;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.service-icon {
    color: #2c3e50;
    flex: 0 0 80px;
}

.service-content {
    flex: 1 1 400px;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 1rem 0;
}

.service-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #dfe6e9;
}

.service-details h4 {
    margin-bottom: 1rem;
}

.service-details ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.service-details li {
    margin-bottom: 0.5rem;
}

.benefits-comparison {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    flex: 1 1 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.process-flow {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.flow-step {
    flex: 1 1 250px;
    text-align: center;
}

.step-icon {
    margin-bottom: 1rem;
}

.step-icon svg {
    margin: 0 auto;
}

/* ===================================
   ABOUT PAGE
   =================================== */

.origin-story {
    background-color: #f8f9fa;
}

.story-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.story-text-block,
.story-visual {
    flex: 1 1 400px;
}

.founding-principles {
    background-color: #ffffff;
}

.principles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.principle-card {
    flex: 1 1 300px;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.team {
    background-color: #ecf0f1;
}

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

.team-member {
    flex: 1 1 300px;
    text-align: center;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.team-avatar {
    margin-bottom: 1.5rem;
}

.team-avatar svg {
    margin: 0 auto;
}

.team-role {
    font-size: 0.875rem;
    color: #7f8c8d;
    margin-bottom: 1rem;
}

.milestones {
    background-color: #ffffff;
}

.timeline {
    max-width: 800px;
    margin: 2rem auto;
}

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

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

.timeline-year {
    flex: 0 0 100px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.timeline-content {
    flex: 1;
}

.craftsmanship {
    background-color: #f8f9fa;
}

.craftsmanship-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.craftsmanship-text,
.craftsmanship-visual {
    flex: 1 1 400px;
}

.sustainability {
    background-color: #ffffff;
}

.sustainability-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.sustainability-block {
    flex: 1 1 250px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.customer-focus {
    background-color: #ecf0f1;
}

.focus-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.focus-item {
    flex: 1 1 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

/* ===================================
   CONTACT PAGE
   =================================== */

.contact-info {
    background-color: #f8f9fa;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    flex: 1 1 300px;
    text-align: center;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-icon svg {
    margin: 0 auto;
}

.about-location {
    background-color: #ffffff;
}

.location-content {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    align-items: center;
}

.location-text,
.location-visual {
    flex: 1 1 400px;
}

.directions {
    background-color: #f8f9fa;
}

.directions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.direction-item {
    flex: 1 1 300px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.company-info-section {
    background-color: #ffffff;
}

.company-details {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 2rem;
}

.detail-block {
    flex: 1 1 400px;
}

.neighborhoods {
    background-color: #f8f9fa;
}

.neighborhood-info {
    max-width: 900px;
    margin: 2rem auto 0;
}

.suggestions-list {
    list-style: none;
    margin-top: 1.5rem;
}

.suggestions-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.suggestions-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-weight: 700;
}

/* ===================================
   THANK YOU PAGE
   =================================== */

.thank-you-section {
    padding: 6rem 0;
    text-align: center;
}

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

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-icon svg {
    margin: 0 auto;
}

.thank-you-message {
    font-size: 1.25rem;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.thank-you-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.next-steps {
    background-color: #f8f9fa;
}

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

.step-card {
    flex: 1 1 300px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* ===================================
   LEGAL PAGES
   =================================== */

.legal-page {
    background-color: #ffffff;
}

.legal-intro {
    font-size: 0.875rem;
    color: #7f8c8d;
    margin-bottom: 2rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-section h2 {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #ecf0f1;
}

.legal-section h2:first-child {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.legal-section h3 {
    margin-top: 1.5rem;
    font-size: 1.25rem;
    color: #34495e;
}

.legal-section h4 {
    margin-top: 1rem;
    font-size: 1rem;
    color: #34495e;
}

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

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

.cookie-table {
    margin: 1.5rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

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

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #34495e;
}

/* ===================================
   FAQ
   =================================== */

.faq,
.visit-faq,
.faq-services {
    background-color: #ffffff;
}

.faq-list {
    max-width: 900px;
    margin: 2rem auto 0;
}

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

.faq-question {
    width: 100%;
    padding: 1.25rem;
    text-align: left;
    font-weight: 600;
    background-color: #f8f9fa;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
}

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

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.25rem;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.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: 1000px;
}

.faq-answer p {
    padding: 1.25rem;
    margin: 0;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 0 1rem;
}

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

.footer-section {
    flex: 1 1 250px;
}

.footer h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer p {
    font-size: 0.875rem;
    color: #bdc3c7;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #ecf0f1;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

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

.footer-bottom p {
    font-size: 0.875rem;
    color: #95a5a6;
    margin: 0;
}

/* ===================================
   COOKIE BANNER & MODAL
   =================================== */

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

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

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

.cookie-content p {
    flex: 1 1 400px;
    margin: 0;
    font-size: 0.875rem;
}

.cookie-content a {
    color: #ecf0f1;
    text-decoration: underline;
}

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

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

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

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

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

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

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

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

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* ===================================
   RESPONSIVE
   =================================== */

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

    h2 {
        font-size: 1.5rem;
    }

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

    .hero {
        padding: 4rem 0;
    }

    section {
        padding: 3rem 0;
    }

    .philosophy-grid,
    .benefits-list,
    .testimonials-grid,
    .process-steps,
    .values-content,
    .values-list,
    .team-grid,
    .principles-grid,
    .contact-grid,
    .directions-grid,
    .focus-grid,
    .sustainability-blocks,
    .benefits-comparison,
    .process-flow,
    .steps-grid {
        flex-direction: column;
    }

    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline-year {
        flex: 0 0 auto;
    }

    .featured-content,
    .story-content,
    .story-layout,
    .location-content,
    .craftsmanship-content,
    .company-details {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column;
        text-align: center;
    }

    .service-icon {
        flex: 0 0 auto;
    }

    .service-icon svg {
        margin: 0 auto;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    .btn {
        display: block;
        width: 100%;
    }

    .thank-you-actions .btn {
        display: block;
        width: 100%;
    }
}