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

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

.ad-notice {
    background-color: #f4f4f4;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #2c2c2c;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #8b6f47;
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    padding: 80px 60px;
    position: relative;
    background: linear-gradient(135deg, #f8f5f1 0%, #ffffff 100%);
}

.hero-content-offset {
    flex: 1;
    max-width: 580px;
    padding-top: 120px;
    padding-right: 40px;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.hero-content-offset p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background-color: #8b6f47;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #6d5635;
}

.hero-image-float {
    position: absolute;
    right: 60px;
    top: 180px;
    width: 48%;
    z-index: 1;
}

.hero-image-float img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: -20px 20px 60px rgba(0,0,0,0.15);
    background-color: #e8e3dc;
}

.intro-block-left {
    display: flex;
    padding: 140px 60px;
    gap: 80px;
    background-color: #fff;
    align-items: center;
}

.content-narrow {
    flex: 1;
    max-width: 520px;
}

.content-narrow h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.content-narrow p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.image-overlap {
    flex: 1;
    position: relative;
    margin-left: -40px;
}

.image-overlap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 20px -20px 60px rgba(0,0,0,0.12);
    background-color: #e8e3dc;
}

.services-grid-offset {
    padding: 120px 60px;
    background: linear-gradient(180deg, #f8f5f1 0%, #ffffff 100%);
}

.section-header-right {
    text-align: right;
    max-width: 600px;
    margin-left: auto;
    margin-bottom: 80px;
}

.section-header-right h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-header-right p {
    font-size: 18px;
    color: #4a4a4a;
}

.services-cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

.service-card {
    background-color: #fff;
    width: calc(33.333% - 27px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.card-1 {
    margin-top: 0;
}

.card-2 {
    margin-top: 60px;
}

.card-3 {
    margin-top: 20px;
}

.card-4 {
    margin-top: 40px;
}

.card-5 {
    margin-top: 0;
}

.card-6 {
    margin-top: 50px;
}

.card-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #e8e3dc;
}

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

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 24px 24px 12px 24px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0 24px 20px 24px;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: #8b6f47;
    margin: 0 24px 20px 24px;
}

.btn-select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px 24px;
    padding: 14px;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select-service:hover {
    background-color: #8b6f47;
}

.form-section-diagonal {
    padding: 120px 60px;
    background-color: #2c2c2c;
    position: relative;
}

.form-container-offset {
    max-width: 650px;
    margin-left: 120px;
    color: #fff;
}

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

.form-container-offset > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #d0d0d0;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #f0f0f0;
}

.form-group input,
.form-group textarea {
    padding: 14px;
    font-size: 15px;
    border: 1px solid #555;
    background-color: #3a3a3a;
    color: #fff;
    font-family: inherit;
}

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

.btn-submit {
    padding: 16px;
    background-color: #8b6f47;
    color: #fff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section-stacked {
    padding: 120px 60px;
    background-color: #fff;
}

.trust-content h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.trust-grid {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
}

.trust-item h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.main-footer {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 60px 40px 60px;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p,
.footer-col a {
    font-size: 14px;
    line-height: 1.8;
    color: #d0d0d0;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

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

.footer-disclaimer {
    border-top: 1px solid #333;
    padding-top: 30px;
    font-size: 13px;
    line-height: 1.7;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 30px 60px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
    color: #2c2c2c;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 28px;
    border: none;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.btn-cookie-reject {
    background-color: #e0e0e0;
    color: #2c2c2c;
}

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

.cookie-link {
    font-size: 13px;
    color: #8b6f47;
    text-decoration: underline;
    white-space: nowrap;
}

.page-header-offset {
    padding: 100px 60px 60px 60px;
    background: linear-gradient(135deg, #f8f5f1 0%, #ffffff 100%);
}

.page-header-offset h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.page-header-offset p {
    font-size: 20px;
    color: #4a4a4a;
}

.about-story-asymmetric {
    display: flex;
    padding: 100px 60px;
    gap: 80px;
    background-color: #fff;
    align-items: flex-start;
}

.story-text-block {
    flex: 1;
    max-width: 550px;
}

.story-text-block h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

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

.story-image-float {
    flex: 1;
    margin-top: 60px;
}

.story-image-float img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: -15px -15px 50px rgba(0,0,0,0.1);
    background-color: #e8e3dc;
}

.timeline-diagonal {
    padding: 100px 60px;
    background-color: #f8f5f1;
}

.timeline-diagonal h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 80px;
    color: #1a1a1a;
}

.timeline-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-item {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.year {
    font-size: 32px;
    font-weight: 700;
    color: #8b6f47;
    margin-bottom: 12px;
}

.timeline-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.timeline-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
}

.philosophy-block {
    padding: 100px 60px;
    background-color: #fff;
}

.philosophy-content-offset {
    max-width: 700px;
    margin-left: 150px;
}

.philosophy-content-offset h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.philosophy-content-offset p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 24px;
}

.team-section-stacked {
    padding: 100px 60px;
    background-color: #f8f5f1;
}

.team-section-stacked h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 70px;
    color: #1a1a1a;
}

.team-grid-offset {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.team-member h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.role {
    font-size: 15px;
    font-weight: 600;
    color: #8b6f47;
    margin-bottom: 16px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
}

.services-detailed {
    padding: 80px 60px;
    background-color: #fff;
}

.service-detail-block {
    display: flex;
    gap: 80px;
    margin-bottom: 100px;
    align-items: center;
}

.offset-left {
    padding-left: 0;
}

.offset-right {
    padding-left: 100px;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    background-color: #e8e3dc;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.service-price-box {
    background-color: #f8f5f1;
    padding: 20px;
    margin: 30px 0;
}

.price-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 6px;
}

.price-amount {
    font-size: 24px;
    font-weight: 700;
    color: #8b6f47;
}

.cta-section-float {
    padding: 100px 60px;
    background-color: #2c2c2c;
    text-align: center;
    color: #fff;
}

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

.cta-section-float p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #d0d0d0;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #8b6f47;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #6d5635;
}

.contact-layout-asymmetric {
    display: flex;
    padding: 100px 60px;
    gap: 100px;
    background-color: #fff;
}

.contact-info-block {
    flex: 1;
    max-width: 500px;
}

.contact-info-block h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.contact-detail h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

.contact-image-offset {
    flex: 1;
    margin-top: -50px;
}

.contact-image-offset img {
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 15px 15px 50px rgba(0,0,0,0.12);
    background-color: #e8e3dc;
}

.map-section {
    padding: 80px 60px;
    background-color: #f8f5f1;
}

.map-section h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.map-placeholder {
    background-color: #fff;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.map-placeholder p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.thanks-section {
    min-height: 70vh;
    padding: 100px 60px;
    background: linear-gradient(135deg, #f8f5f1 0%, #ffffff 100%);
}

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

.thanks-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.thanks-content > p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.thanks-service-info {
    background-color: #fff;
    padding: 20px;
    margin-bottom: 50px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.thanks-service-info p {
    font-size: 16px;
    color: #4a4a4a;
}

.thanks-next-steps {
    margin-bottom: 60px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
    text-align: center;
}

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

.step-item {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #8b6f47;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.step-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s;
}

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

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

.btn-secondary {
    background-color: #e0e0e0;
    color: #2c2c2c;
}

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 60px;
    background-color: #fff;
}

.legal-page h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.legal-page h4 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 24px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 16px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 8px;
}

.legal-page a {
    color: #8b6f47;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .main-nav {
        padding: 20px 40px;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 60px 40px;
    }

    .hero-image-float {
        position: static;
        width: 100%;
        margin-top: 40px;
    }

    .intro-block-left,
    .about-story-asymmetric {
        flex-direction: column;
        padding: 80px 40px;
    }

    .services-grid-offset {
        padding: 80px 40px;
    }

    .services-cards-asymmetric {
        justify-content: center;
    }

    .service-card {
        width: calc(50% - 20px);
    }

    .form-section-diagonal {
        padding: 80px 40px;
    }

    .form-container-offset {
        margin-left: 0;
    }

    .trust-grid,
    .team-grid-offset {
        flex-direction: column;
    }

    .service-detail-block {
        flex-direction: column;
        padding-left: 0 !important;
    }

    .offset-right {
        padding-left: 0;
    }

    .offset-right .service-detail-image {
        order: 2;
    }

    .offset-right .service-detail-content {
        order: 1;
    }

    .contact-layout-asymmetric {
        flex-direction: column;
        padding: 80px 40px;
    }

    .contact-image-offset {
        margin-top: 40px;
    }

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

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }

    .hero-content-offset h1 {
        font-size: 36px;
    }

    .service-card {
        width: 100%;
    }

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

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