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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2a2a2a;
    background: #fafafa;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    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;
    font-size: 14px;
}

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

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

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

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

.btn-accept:hover {
    background: #a56828;
}

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

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

.nav-floating {
    position: fixed;
    top: 40px;
    right: 40px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-brand {
    font-weight: 600;
    font-size: 18px;
    color: #c17f3a;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
}

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

.nav-menu a:hover {
    color: #c17f3a;
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 60px 60px;
    overflow: hidden;
}

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

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

.hero-subtitle {
    font-size: 20px;
    line-height: 1.5;
    color: #555;
    margin-bottom: 40px;
    max-width: 480px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #c17f3a;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #a56828;
}

.hero-image-wrap {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 55%;
    height: 80%;
    transform: rotate(3deg);
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    background: #e8d5c4;
}

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

.intro-offset {
    display: flex;
    padding: 140px 60px 100px;
    gap: 80px;
    background: #fff;
}

.intro-block-left {
    width: 40%;
}

.intro-block-left h2 {
    font-size: 52px;
    line-height: 1.2;
    font-weight: 300;
    color: #1a1a1a;
}

.intro-block-right {
    width: 60%;
    padding-left: 40px;
}

.intro-block-right p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.visual-break {
    padding: 0 60px 120px;
    background: #fff;
}

.visual-grid-asymmetric {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.visual-item {
    overflow: hidden;
    border-radius: 6px;
    background: #e8d5c4;
}

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

.visual-item.large {
    width: 50%;
    height: 600px;
}

.visual-item.small-top {
    width: 25%;
    height: 380px;
    margin-top: 60px;
}

.visual-item.small-bottom {
    width: 25%;
    height: 420px;
    margin-top: 180px;
}

.philosophy-stagger {
    display: flex;
    padding: 120px 60px;
    gap: 100px;
    background: #f9f6f3;
    align-items: center;
}

.philosophy-text {
    width: 55%;
}

.philosophy-text h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.philosophy-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
}

.philosophy-visual {
    width: 45%;
    display: flex;
    gap: 40px;
}

.stat-block {
    text-align: center;
}

.stat-number {
    font-size: 64px;
    font-weight: 600;
    color: #c17f3a;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.services-asymmetric {
    padding: 140px 60px 120px;
    background: #fff;
}

.services-header-offset {
    max-width: 600px;
    margin-bottom: 80px;
    margin-left: 100px;
}

.services-header-offset h2 {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-header-offset p {
    font-size: 18px;
    color: #666;
}

.services-grid-irregular {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 30px;
    border-radius: 8px;
    background: #fafafa;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.service-card.offset-right {
    margin-left: 150px;
}

.service-card.offset-left {
    margin-right: 150px;
}

.service-image {
    width: 35%;
    border-radius: 6px;
    overflow: hidden;
    background: #e8d5c4;
}

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

.service-info {
    width: 65%;
}

.service-info h3 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 600;
    color: #c17f3a;
    margin-bottom: 20px;
}

.btn-select-service {
    padding: 12px 30px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

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

.form-section-diagonal {
    padding: 120px 60px;
    background: linear-gradient(135deg, #f9f6f3 0%, #fff 100%);
    position: relative;
}

.form-container {
    max-width: 700px;
    margin-left: 180px;
}

.form-container h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-container > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

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

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

.form-group textarea {
    resize: vertical;
}

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

.btn-submit:hover {
    background: #a56828;
}

.testimonials-offset {
    padding: 120px 60px;
    background: #fff;
}

.testimonials-offset h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a1a;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card {
    background: #f9f6f3;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #c17f3a;
}

.testimonial-card.offset {
    margin-left: 100px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #888;
    text-align: right;
}

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

.footer-main {
    display: flex;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #c17f3a;
}

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

.footer-col p {
    font-size: 14px;
    color: #aaa;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #c17f3a;
}

.footer-disclaimer {
    padding-top: 40px;
    border-top: 1px solid #444;
}

.footer-disclaimer p {
    font-size: 12px;
    line-height: 1.6;
    color: #888;
    max-width: 1000px;
}

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

    .hero-content-offset {
        width: 100%;
        margin-bottom: 40px;
    }

    .hero-image-wrap {
        position: relative;
        width: 100%;
        height: 400px;
        right: 0;
        top: 0;
        transform: none;
    }

    .intro-offset {
        flex-direction: column;
        padding: 80px 40px;
        gap: 40px;
    }

    .intro-block-left,
    .intro-block-right {
        width: 100%;
        padding: 0;
    }

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

    .visual-item.large,
    .visual-item.small-top,
    .visual-item.small-bottom {
        width: 100%;
        margin-top: 0;
    }

    .philosophy-stagger {
        flex-direction: column;
        padding: 80px 40px;
        gap: 40px;
    }

    .philosophy-text,
    .philosophy-visual {
        width: 100%;
    }

    .services-header-offset {
        margin-left: 0;
    }

    .service-card {
        flex-direction: column;
    }

    .service-card.offset-right,
    .service-card.offset-left {
        margin: 0;
    }

    .service-image,
    .service-info {
        width: 100%;
    }

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

    .testimonial-card.offset {
        margin-left: 0;
    }

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

@media (max-width: 768px) {
    .nav-floating {
        top: 20px;
        right: 20px;
        left: 20px;
        flex-wrap: wrap;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 15px;
        margin-top: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}