* {
    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.7;
    color: #2c2c2c;
    background-color: #fafafa;
}

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

.nav-floating {
    position: fixed;
    top: 50px;
    right: 40px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
    color: #8B4513;
}

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

.nav-links li {
    margin: 10px 0;
}

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

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

.hero-asymmetric {
    display: flex;
    flex-direction: row;
    min-height: 90vh;
    position: relative;
    margin-top: 40px;
    padding: 80px 60px;
}

.hero-content-offset {
    width: 45%;
    padding-top: 120px;
    padding-right: 60px;
    z-index: 10;
}

.hero-title-large {
    font-size: 64px;
    line-height: 1.1;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 22px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-primary {
    display: inline-block;
    padding: 18px 40px;
    background-color: #8B4513;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-primary:hover {
    background-color: #6d3410;
    transform: translateY(-2px);
}

.hero-visual-overlap {
    width: 55%;
    position: absolute;
    right: 0;
    top: 15%;
    background-color: #e8d5c4;
}

.hero-visual-overlap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-offset {
    display: flex;
    flex-direction: row;
    padding: 100px 60px;
    gap: 80px;
    align-items: center;
}

.intro-narrow {
    width: 50%;
    padding-left: 120px;
}

.intro-narrow h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.intro-narrow p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.intro-visual-card {
    width: 40%;
    background-color: #d4c4b0;
    transform: translateY(-40px);
}

.intro-visual-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.story-irregular {
    display: flex;
    flex-direction: row;
    padding: 80px 60px 120px 140px;
    gap: 60px;
    background-color: #f5f5f5;
}

.story-block-left {
    width: 50%;
    padding-right: 40px;
}

.story-block-left h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.story-visual-right {
    width: 40%;
    margin-top: 80px;
    background-color: #c9b89a;
}

.story-visual-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-asymmetric {
    padding: 120px 80px 100px 60px;
    background-color: #fff;
}

.section-title-offset {
    font-size: 48px;
    margin-bottom: 70px;
    margin-left: 80px;
    color: #1a1a1a;
}

.service-cards-stagger {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding: 40px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
    align-items: center;
}

.service-card img {
    width: 280px;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #8B4513;
    margin-top: 10px;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 14px 32px;
    background-color: #2c2c2c;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background-color: #8B4513;
    transform: scale(1.05);
}

.service-card.selected {
    border-color: #8B4513;
    background-color: #fef9f5;
}

.card-elevated {
    margin-left: 0;
    background-color: #fafafa;
}

.card-overlap {
    margin-left: 100px;
}

.card-shifted {
    margin-left: 180px;
}

.card-inline {
    margin-left: 60px;
}

.card-bottom {
    margin-left: 140px;
}

.card-final {
    margin-left: 20px;
}

.form-section-offset {
    padding: 100px 60px 120px 180px;
    background-color: #f9f6f3;
}

.form-container-irregular {
    max-width: 600px;
    background-color: #fff;
    padding: 60px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transform: translateX(120px);
}

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

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group input,
.form-group select {
    padding: 14px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: inherit;
}

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

.btn-submit {
    padding: 16px 40px;
    background-color: #8B4513;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 15px;
}

.btn-submit:hover {
    background-color: #6d3410;
    transform: translateY(-2px);
}

.testimonials-scattered {
    padding: 100px 80px;
    background-color: #fff;
}

.testimonials-scattered h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.testimonial-grid-irregular {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.testimonial {
    padding: 40px;
    background-color: #f9f9f9;
    border-left: 4px solid #8B4513;
    max-width: 700px;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial cite {
    font-size: 15px;
    color: #777;
    font-style: normal;
}

.testimonial-left {
    margin-left: 60px;
}

.testimonial-right {
    margin-left: 280px;
}

.testimonial-center {
    margin-left: 140px;
}

.footer-asymmetric {
    background-color: #2c2c2c;
    color: #e0e0e0;
    padding: 80px 60px 40px 60px;
}

.footer-content {
    display: flex;
    flex-direction: row;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-block {
    flex: 1;
}

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

.footer-block p {
    font-size: 15px;
    line-height: 1.7;
    color: #b0b0b0;
}

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

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

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

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

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

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

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    border-top: 2px solid #8B4513;
    padding: 25px 40px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #2c2c2c;
}

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

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

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

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

    .hero-title-large {
        font-size: 36px;
    }

    .hero-visual-overlap {
        position: relative;
        width: 100%;
        margin-top: 30px;
    }

    .intro-offset,
    .story-irregular {
        flex-direction: column;
        padding: 40px 20px;
    }

    .intro-narrow,
    .intro-visual-card,
    .story-block-left,
    .story-visual-right {
        width: 100%;
        padding: 0;
        margin: 0;
        transform: none;
    }

    .service-card {
        flex-direction: column;
        margin-left: 0 !important;
    }

    .service-card img {
        width: 100%;
    }

    .form-section-offset {
        padding: 40px 20px;
    }

    .form-container-irregular {
        transform: none;
        padding: 30px;
    }

    .testimonial {
        margin-left: 0 !important;
    }

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

    .nav-floating {
        position: static;
        margin: 0;
        border-radius: 0;
    }

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