* {
    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: #fafafa;
}

.ad-disclosure {
    background: #f4f1ed;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0ddd8;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 40px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-left .logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
}

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

.nav-right a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #6b8e23;
}

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

.hero-content-offset {
    flex: 1;
    max-width: 540px;
    padding-top: 80px;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

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

.cta-primary:hover {
    background: #556b1a;
}

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

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    background-color: #d4cfc7;
}

.intro-offset {
    display: flex;
    padding: 90px 40px;
    gap: 70px;
    align-items: center;
}

.intro-block-left {
    flex: 1;
    padding-right: 40px;
}

.intro-block-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.intro-block-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
}

.intro-visual-right {
    flex: 1;
}

.intro-visual-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #d4cfc7;
}

.services-irregular {
    padding: 100px 40px;
    background: #fff;
}

.section-title-centered {
    text-align: center;
    font-size: 42px;
    margin-bottom: 70px;
    color: #1a1a1a;
}

.service-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 35px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 300px;
    background: #f9f8f6;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

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

.card-offset-2 {
    margin-top: 40px;
}

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

.card-offset-4 {
    margin-top: 60px;
}

.card-offset-5 {
    margin-top: 30px;
}

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #d4cfc7;
}

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

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

.service-card .price {
    font-size: 22px;
    font-weight: 700;
    color: #6b8e23;
    margin: 15px 20px;
}

.btn-select {
    width: calc(100% - 40px);
    margin: 20px 20px 25px 20px;
    padding: 12px;
    background: #6b8e23;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #556b1a;
}

.process-diagonal {
    padding: 80px 40px;
    background: linear-gradient(120deg, #e8e5e0 0%, #f8f6f3 100%);
}

.process-text {
    max-width: 800px;
    margin: 0 auto;
}

.process-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.materials-section {
    padding: 90px 40px;
    background: #fff;
}

.materials-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.materials-grid {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.material-item {
    flex: 1;
    padding: 30px;
    background: #f9f8f6;
    border-radius: 8px;
}

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

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

.form-section-angled {
    padding: 100px 40px;
    background: #f4f1ed;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-container > p {
    margin-bottom: 30px;
    color: #666;
}

.form-selection-display {
    padding: 15px;
    background: #f9f8f6;
    border-radius: 6px;
    margin-bottom: 25px;
    font-size: 15px;
    color: #666;
    text-align: center;
}

.form-selection-display.selected {
    background: #e8f4d9;
    color: #6b8e23;
    font-weight: 600;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    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: #6b8e23;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #6b8e23;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #556b1a;
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.footer-split {
    background: #2c2c2c;
    color: #fff;
    padding: 60px 40px 20px 40px;
}

.footer-main {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #bbb;
}

.footer-col a {
    display: block;
    color: #bbb;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 44, 44, 0.98);
    color: #fff;
    padding: 25px 40px;
    z-index: 1000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: #6b8e23;
    color: #fff;
}

.btn-accept:hover {
    background: #556b1a;
}

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

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

.page-hero-minimal {
    padding: 100px 40px 60px 40px;
    text-align: center;
    background: linear-gradient(135deg, #f8f6f3 0%, #e8e5e0 100%);
}

.page-hero-minimal h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.page-hero-minimal p {
    font-size: 19px;
    color: #666;
}

.about-content-offset {
    display: flex;
    padding: 80px 40px;
    gap: 60px;
    align-items: flex-start;
}

.about-image-float {
    flex: 1;
    position: relative;
    margin-top: 40px;
}

.about-image-float img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    background-color: #d4cfc7;
}

.about-text-block {
    flex: 1;
}

.about-text-block h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-text-block p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4a4a4a;
}

.philosophy-diagonal {
    padding: 70px 40px;
    background: #f4f1ed;
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-diagonal h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.team-section-asymmetric {
    padding: 80px 40px;
    background: #fff;
}

.team-section-asymmetric h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.team-grid {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.team-member {
    flex: 1;
    padding: 35px;
    background: #f9f8f6;
    border-radius: 8px;
}

.team-member h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.values-stacked {
    padding: 80px 40px;
    background: linear-gradient(120deg, #e8e5e0 0%, #f8f6f3 100%);
}

.value-block {
    max-width: 800px;
    margin: 0 auto 40px auto;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
}

.value-block h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.warranty-section {
    padding: 70px 40px;
    background: #fff;
    max-width: 900px;
    margin: 0 auto;
}

.warranty-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.warranty-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
}

.services-detail-layout {
    padding: 60px 40px;
}

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

.service-detail-item.reverse {
    flex-direction: row-reverse;
}

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

.service-detail-visual img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    background-color: #d4cfc7;
}

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 18px;
    color: #1a1a1a;
}

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

.price-detail {
    font-size: 28px;
    font-weight: 700;
    color: #6b8e23;
    margin: 20px 0;
}

.service-features {
    list-style: none;
    margin: 20px 0 25px 0;
}

.service-features li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 15px;
    color: #4a4a4a;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6b8e23;
    font-weight: bold;
}

.btn-service-select {
    padding: 14px 32px;
    background: #6b8e23;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-service-select:hover {
    background: #556b1a;
}

.service-process {
    padding: 80px 40px;
    background: #f4f1ed;
}

.service-process h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a1a;
}

.process-steps {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    flex: 1;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #6b8e23;
}

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

.contact-layout-asymmetric {
    display: flex;
    gap: 70px;
    padding: 70px 40px;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 35px;
    color: #1a1a1a;
}

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

.contact-detail h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #6b8e23;
}

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

.contact-note {
    margin-top: 40px;
    padding: 20px;
    background: #f9f8f6;
    border-radius: 6px;
}

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

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    background-color: #d4cfc7;
}

.location-section {
    padding: 70px 40px;
    background: #f4f1ed;
}

.location-section h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.location-section p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #4a4a4a;
    max-width: 900px;
}

.directions {
    display: flex;
    gap: 40px;
    max-width: 1000px;
}

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

.direction-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.service-area {
    padding: 70px 40px;
    background: #fff;
    max-width: 900px;
    margin: 0 auto;
}

.service-area h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.thanks-section {
    padding: 120px 40px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8f6f3 0%, #e8e5e0 100%);
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.thanks-service-display {
    padding: 20px;
    background: #e8f4d9;
    border-radius: 6px;
    margin: 30px 0;
    font-size: 17px;
    color: #6b8e23;
}

.thanks-next-steps {
    margin: 40px 0;
    padding: 30px;
    background: #fff;
    border-radius: 8px;
    text-align: left;
}

.thanks-next-steps h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.thanks-next-steps p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
    color: #4a4a4a;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

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

.btn-primary:hover {
    background: #556b1a;
}

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

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

.legal-page {
    padding: 60px 40px;
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

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

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

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

.legal-page ul {
    margin: 15px 0 20px 30px;
}

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

.legal-page em {
    color: #666;
    font-size: 14px;
}

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

.cookie-table thead {
    background: #f4f1ed;
}

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

.cookie-table th {
    font-weight: 600;
    color: #1a1a1a;
}

.cookie-table td {
    font-size: 15px;
    color: #4a4a4a;
}

@media (max-width: 768px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
        padding: 40px 20px;
    }

    .hero-content-offset {
        max-width: 100%;
        padding-top: 20px;
    }

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

    .hero-image-overlap {
        margin-left: 0;
        margin-top: 30px;
    }

    .intro-offset,
    .about-content-offset,
    .contact-layout-asymmetric,
    .service-detail-item {
        flex-direction: column;
        gap: 30px;
    }

    .service-grid-asymmetric {
        flex-direction: column;
    }

    .service-card {
        margin-top: 0 !important;
    }

    .materials-grid,
    .team-grid,
    .process-steps,
    .directions {
        flex-direction: column;
    }

    .footer-main {
        flex-direction: column;
        gap: 30px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-split {
        padding: 20px;
    }

    .nav-right {
        gap: 20px;
        font-size: 14px;
    }

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