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

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.7;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.btn-accept {
    background-color: #8B7355;
    color: #ffffff;
}

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.header-main {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.container-header {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-name {
    font-size: 24px;
    font-weight: 600;
    color: #2c2c2c;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.main-nav a {
    font-size: 15px;
    color: #2c2c2c;
}

.ad-disclosure {
    font-size: 12px;
    color: #888;
    padding: 5px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

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

.container-medium {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 80px 60px;
}

.hero-text-wrapper h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-lead {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #555;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #8B7355;
    color: #ffffff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.cta-primary:hover {
    background-color: #6d5942;
    opacity: 1;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: #8B7355;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #8B7355;
    border-radius: 5px;
    transition: all 0.2s ease;
}

.cta-secondary:hover {
    background-color: #8B7355;
    color: #ffffff;
    opacity: 1;
}

.intro-asymmetric {
    padding: 100px 0;
}

.intro-offset-layout {
    display: flex;
    align-items: center;
    gap: 60px;
}

.intro-content-left {
    flex: 1.2;
}

.intro-content-left h2 {
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.intro-content-left p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #444;
}

.intro-image-right {
    flex: 1;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
}

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

.philosophy-section {
    background-color: #f9f8f6;
    padding: 100px 0;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-header-center p {
    font-size: 19px;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.philosophy-cards {
    display: flex;
    gap: 40px;
}

.phil-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 6px;
}

.phil-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 600;
}

.phil-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.services-showcase {
    padding: 100px 0;
}

.section-title-left {
    font-size: 44px;
    margin-bottom: 60px;
    font-weight: 700;
}

.services-split-layout {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-item-large {
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-item-large:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image-container {
    flex: 1;
    height: 450px;
    overflow: hidden;
    border-radius: 8px;
}

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

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-details p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #8B7355;
    margin: 24px 0;
}

.btn-service {
    padding: 14px 32px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-service:hover {
    background-color: #444;
}

.testimonial-inline {
    background-color: #f5f3f0;
    padding: 80px 0;
}

.testimonial-quote {
    border-left: 4px solid #8B7355;
    padding-left: 40px;
}

.testimonial-quote p {
    font-size: 24px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.testimonial-quote cite {
    font-size: 16px;
    font-style: normal;
    color: #666;
}

.form-section {
    padding: 100px 0;
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 16px;
    font-weight: 700;
}

.form-intro p {
    font-size: 18px;
    color: #555;
}

.main-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-notice {
    background-color: #e8f5e9;
    padding: 16px 20px;
    border-radius: 5px;
    margin-bottom: 24px;
    font-size: 16px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8B7355;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #8B7355;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-submit:hover {
    background-color: #6d5942;
}

.final-cta {
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 100px 0;
}

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

.cta-content-center h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-center p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #ddd;
}

.site-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 60px 0 30px;
}

.container-footer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 14px;
    color: #cccccc;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #999;
    margin-bottom: 20px;
}

.copyright {
    font-size: 13px;
    color: #999;
    text-align: center;
}

.page-hero-about,
.page-hero-services,
.page-hero-contact {
    padding: 80px 0 60px;
    text-align: center;
}

.page-hero-about h1,
.page-hero-services h1,
.page-hero-contact h1 {
    font-size: 52px;
    margin-bottom: 16px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
}

.about-story {
    padding: 80px 0;
}

.story-split {
    display: flex;
    gap: 50px;
    align-items: center;
}

.story-image-left {
    flex: 1;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
}

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

.story-text-right {
    flex: 1.2;
}

.story-text-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
}

.story-text-right p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.philosophy-deep {
    background-color: #f9f8f6;
    padding: 100px 0;
}

.philosophy-deep h2 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 700;
    text-align: center;
}

.lead-text {
    font-size: 20px;
    text-align: center;
    color: #555;
    margin-bottom: 60px;
}

.insight-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.insight-item h3 {
    font-size: 26px;
    margin-bottom: 16px;
    font-weight: 700;
}

.insight-item p {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
}

.team-approach {
    padding: 100px 0;
}

.section-centered {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.process-cards-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.process-card {
    flex: 1;
    min-width: 280px;
    background-color: #f5f3f0;
    padding: 36px 28px;
    border-radius: 6px;
}

.process-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 600;
}

.process-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.values-section {
    background-color: #fafafa;
    padding: 100px 0;
}

.values-section h2 {
    font-size: 42px;
    margin-bottom: 40px;
    font-weight: 700;
}

.values-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #444;
}

.about-cta {
    padding: 100px 0;
}

.cta-box {
    background-color: #8B7355;
    color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    text-align: center;
}

.cta-box h2 {
    font-size: 38px;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-box p {
    font-size: 19px;
    margin-bottom: 32px;
}

.services-detailed {
    padding: 80px 0;
}

.service-block {
    margin-bottom: 80px;
}

.service-layout-split {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.service-layout-split.reverse {
    flex-direction: row-reverse;
}

.service-content-main {
    flex: 1.3;
}

.service-content-main h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-description {
    font-size: 17px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 32px;
}

.service-features h4 {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 600;
}

.service-features ul {
    list-style: none;
    margin-bottom: 32px;
}

.service-features li {
    font-size: 16px;
    line-height: 1.7;
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
    color: #555;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8B7355;
    font-weight: bold;
    font-size: 20px;
}

.service-pricing-section {
    margin-top: 32px;
}

.price-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #666;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #8B7355;
    margin-bottom: 20px;
}

.btn-service-page {
    padding: 14px 32px;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-service-page:hover {
    background-color: #444;
}

.service-image-side {
    flex: 1;
    height: 600px;
    overflow: hidden;
    border-radius: 8px;
}

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

.services-form-section {
    background-color: #f9f8f6;
    padding: 100px 0;
}

.form-intro-services {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro-services h2 {
    font-size: 38px;
    margin-bottom: 16px;
    font-weight: 700;
}

.form-intro-services p {
    font-size: 18px;
    color: #555;
}

.contact-main {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-info-section {
    flex: 1;
}

.contact-info-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #8B7355;
}

.contact-detail p {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.hours-note {
    margin-top: 8px;
    font-size: 14px;
    color: #666;
}

.contact-note {
    background-color: #f5f3f0;
    padding: 24px;
    border-radius: 6px;
    margin-top: 32px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.contact-image-section {
    flex: 1;
    height: 600px;
    overflow: hidden;
    border-radius: 8px;
}

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

.contact-additional {
    background-color: #fafafa;
    padding: 80px 0;
}

.contact-additional h2 {
    font-size: 36px;
    margin-bottom: 32px;
    font-weight: 700;
}

.visit-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.location-context {
    padding: 80px 0;
}

.location-split {
    display: flex;
    gap: 50px;
    align-items: center;
}

.location-text {
    flex: 1.2;
}

.location-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    font-weight: 700;
}

.location-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #444;
}

.location-image {
    flex: 1;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
}

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

.contact-faq-mini {
    background-color: #f9f8f6;
    padding: 80px 0;
}

.contact-faq-mini h2 {
    font-size: 38px;
    margin-bottom: 40px;
    font-weight: 700;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.thanks-hero {
    padding: 80px 0 40px;
    text-align: center;
}

.thanks-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-message {
    font-size: 22px;
    color: #666;
}

.thanks-details {
    padding: 60px 0;
}

.thanks-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.confirmation-box {
    background-color: #f9f8f6;
    padding: 48px;
    border-radius: 8px;
}

.confirmation-box h2 {
    font-size: 32px;
    margin-bottom: 32px;
    font-weight: 700;
}

.steps-list {
    display: flex;
    gap: 40px;
}

.step-item {
    flex: 1;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #8B7355;
}

.step-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.selected-service-recap {
    background-color: #e8f5e9;
    padding: 32px;
    border-radius: 6px;
}

.selected-service-recap h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.next-steps-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
}

.next-steps-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #444;
}

.thanks-continue {
    background-color: #fafafa;
    padding: 80px 0;
}

.thanks-continue h2 {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
}

.thanks-links {
    display: flex;
    gap: 30px;
}

.thanks-link-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 6px;
    transition: all 0.2s ease;
    border: 1px solid #e5e5e5;
}

.thanks-link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    opacity: 1;
}

.thanks-link-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #8B7355;
}

.thanks-link-card p {
    font-size: 16px;
    color: #555;
}

.legal-page {
    padding: 80px 0;
}

.legal-intro {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #444;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #444;
}

.legal-content a {
    color: #8B7355;
    text-decoration: underline;
}

.legal-content a:hover {
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        padding: 60px 40px;
    }

    .hero-text-wrapper h1 {
        font-size: 44px;
    }

    .hero-right {
        height: 400px;
    }

    .intro-offset-layout,
    .story-split,
    .location-split {
        flex-direction: column;
    }

    .philosophy-cards {
        flex-direction: column;
    }

    .service-item-large,
    .service-item-large:nth-child(even) {
        flex-direction: column;
    }

    .footer-grid {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-col {
        flex: 1 1 calc(50% - 20px);
        min-width: 200px;
    }

    .service-layout-split,
    .service-layout-split.reverse {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }

    .steps-list {
        flex-direction: column;
    }

    .thanks-links {
        flex-direction: column;
    }
}

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

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }

    .hero-text-wrapper h1 {
        font-size: 36px;
    }

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

    .form-row {
        flex-direction: column;
    }

    .process-cards-layout {
        flex-direction: column;
    }

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