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

:root {
    --color-primary: #2c2520;
    --color-secondary: #6b5d52;
    --color-accent: #a48b7a;
    --color-bg-light: #f7f5f2;
    --color-bg-medium: #e8e5e0;
    --color-text-dark: #2c2520;
    --color-text-light: #6b5d52;
    --color-border: #d4cfc8;
    --spacing-small: 1rem;
    --spacing-medium: 2rem;
    --spacing-large: 4rem;
    --spacing-xlarge: 6rem;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    color: #fff;
    padding: 1.5rem;
    z-index: 1000;
}

.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: 1rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: var(--color-accent);
    color: #fff;
}

.cookie-accept:hover {
    background-color: #8e7766;
}

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

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

.header-asymmetric {
    padding: 1.5rem 2rem;
    background-color: var(--color-bg-light);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 999;
}

.nav-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-left .logo-offset {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    letter-spacing: 0.02em;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-light);
    padding: 0.3rem 0.8rem;
    border: 1px solid var(--color-border);
    background-color: var(--color-bg-medium);
}

.nav-right a {
    color: var(--color-text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-right a:hover {
    color: var(--color-accent);
}

.main-asymmetric {
    overflow-x: hidden;
}

.hero-offset {
    display: flex;
    min-height: 85vh;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 4rem;
    padding-top: 3rem;
}

.hero-title-large {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.cta-primary {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background-color: var(--color-primary);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
}

.hero-image-right {
    flex: 1;
    margin-left: -2rem;
    margin-top: 3rem;
}

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

.intro-irregular {
    display: flex;
    max-width: 1400px;
    margin: var(--spacing-xlarge) auto;
    padding: 0 2rem;
    gap: 3rem;
    align-items: center;
}

.intro-block-offset {
    flex: 1.2;
    padding-right: 2rem;
}

.intro-block-offset h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.intro-block-offset p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.intro-visual-overlap {
    flex: 1;
    margin-top: -4rem;
    margin-right: -2rem;
}

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

.services-staggered {
    padding: var(--spacing-xlarge) 2rem;
    background-color: #fff;
}

.services-header-left {
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.services-header-left h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.services-header-left p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    max-width: 620px;
}

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background-color: var(--color-bg-light);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.service-card:nth-child(odd) {
    transform: translateY(-1rem);
}

.service-card:hover {
    transform: translateY(-1.5rem);
}

.service-image-container {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: var(--color-primary);
}

.service-card p {
    margin: 0 1.5rem 1rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.service-price {
    display: block;
    margin: 1.5rem 1.5rem 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-accent);
}

.service-select-btn {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem;
    background-color: var(--color-primary);
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-select-btn:hover {
    background-color: var(--color-secondary);
}

.service-select-btn.selected {
    background-color: var(--color-accent);
}

.form-section-offset {
    padding: var(--spacing-xlarge) 2rem;
    background-color: var(--color-bg-medium);
}

.form-container-asymmetric {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-intro-block {
    flex: 0.8;
}

.form-intro-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
    line-height: 1.2;
}

.form-intro-block p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

.contact-form-irregular {
    flex: 1;
    background-color: #fff;
    padding: 2.5rem;
    transform: translateY(-2rem);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--color-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--color-border);
    font-family: inherit;
    font-size: 1rem;
    background-color: var(--color-bg-light);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.form-submit-btn {
    width: 100%;
    padding: 1.1rem;
    background-color: var(--color-primary);
    color: #fff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit-btn:hover {
    background-color: var(--color-secondary);
}

.trust-block-irregular {
    padding: var(--spacing-xlarge) 2rem;
    background-color: #fff;
}

.trust-content-overlap {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content-overlap h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--color-primary);
    text-align: left;
    margin-left: 3rem;
}

.testimonials-offset {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--color-bg-light);
    border-left: 3px solid var(--color-accent);
    transform: translateX(1.5rem);
}

.testimonial:nth-child(2) {
    transform: translateX(-1rem) translateY(2rem);
}

.testimonial:nth-child(3) {
    transform: translateX(1rem) translateY(-1rem);
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
    font-style: italic;
}

.testimonial cite {
    font-style: normal;
    font-weight: 600;
    color: var(--color-accent);
}

.cta-section-floating {
    padding: var(--spacing-xlarge) 2rem;
    background-color: var(--color-primary);
}

.cta-content-irregular {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-content-irregular h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.cta-content-irregular p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.85);
}

.cta-secondary {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background-color: transparent;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #fff;
    color: var(--color-primary);
}

.footer-stacked {
    background-color: var(--color-primary);
    color: #fff;
    padding: var(--spacing-large) 2rem 2rem;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}

.footer-links-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.footer-col li {
    margin-bottom: 0.7rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-col p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
}

.footer-bottom {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

.about-hero-irregular {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    gap: 3rem;
    align-items: center;
}

.about-intro-offset {
    flex: 1;
    transform: translateY(-1rem);
}

.about-intro-offset h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.about-intro-offset p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.about-image-overlap {
    flex: 1;
    margin-right: -2rem;
}

.about-image-overlap img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.philosophy-block-staggered {
    display: flex;
    max-width: 1400px;
    margin: var(--spacing-xlarge) auto;
    padding: 0 2rem;
    gap: 4rem;
    background-color: #fff;
    padding: var(--spacing-large) 2rem;
}

.philosophy-content {
    flex: 1.3;
}

.philosophy-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.philosophy-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
}

.philosophy-visual {
    flex: 1;
    margin-top: 3rem;
}

.philosophy-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.team-section-irregular {
    max-width: 1400px;
    margin: var(--spacing-xlarge) auto;
    padding: 0 2rem;
}

.team-section-irregular h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--color-primary);
}

.team-grid-offset {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 300px;
}

.team-member:nth-child(2) {
    transform: translateY(2rem);
}

.team-image {
    width: 100%;
    height: 320px;
    margin-bottom: 1.5rem;
}

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

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.7rem;
    color: var(--color-primary);
}

.team-member p {
    color: var(--color-text-light);
    line-height: 1.6;
}

.values-block-offset {
    max-width: 1200px;
    margin: var(--spacing-xlarge) auto;
    padding: 0 2rem;
}

.values-block-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: var(--color-primary);
    margin-left: 2rem;
}

.values-list-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--color-bg-light);
    border-left: 4px solid var(--color-accent);
}

.value-item:nth-child(1) {
    transform: translateX(2rem);
}

.value-item:nth-child(2) {
    transform: translateX(-1rem);
}

.value-item:nth-child(3) {
    transform: translateX(1rem);
}

.value-item:nth-child(4) {
    transform: translateX(-2rem);
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--color-primary);
}

.value-item p {
    color: var(--color-text-light);
    line-height: 1.6;
}

.services-hero-offset {
    max-width: 1200px;
    margin: 4rem auto 3rem;
    padding: 0 2rem;
    transform: translateX(2rem);
}

.services-hero-offset h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.services-intro {
    font-size: 1.3rem;
    color: var(--color-text-light);
    max-width: 650px;
}

.services-detailed-irregular {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail-block {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: center;
}

.service-block-1,
.service-block-3,
.service-block-5 {
    flex-direction: row;
}

.service-block-2,
.service-block-4,
.service-block-6 {
    flex-direction: row-reverse;
}

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

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

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

.service-detail-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
}

.service-detail-content ul {
    margin: 1.5rem 0 1.5rem 1.5rem;
    color: var(--color-text-light);
}

.service-detail-content li {
    margin-bottom: 0.7rem;
    line-height: 1.6;
}

.service-detail-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-accent);
    margin: 2rem 0 1.5rem;
}

.service-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--color-primary);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background-color: var(--color-secondary);
}

.services-note-offset {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 2rem;
    background-color: var(--color-bg-medium);
    border-left: 3px solid var(--color-accent);
    transform: translateX(-2rem);
}

.services-note-offset p {
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

.contact-hero-offset {
    max-width: 1200px;
    margin: 4rem auto 3rem;
    padding: 0 2rem;
    transform: translateX(-2rem);
}

.contact-hero-offset h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.contact-hero-offset p {
    font-size: 1.2rem;
    color: var(--color-text-light);
}

.contact-content-irregular {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--color-primary);
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: var(--color-primary);
    font-weight: 600;
}

.contact-detail p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.contact-visual-offset {
    flex: 1;
    margin-top: 3rem;
}

.contact-visual-offset img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.contact-cta-block {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    text-align: center;
    background-color: var(--color-bg-medium);
    transform: translateX(2rem);
}

.contact-cta-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.contact-cta-block p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--color-text-light);
}

.thanks-hero-centered {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    gap: 4rem;
    align-items: center;
}

.thanks-content {
    flex: 1.2;
}

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-primary);
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--color-text-light);
}

.thanks-service-reference {
    padding: 1.5rem;
    background-color: var(--color-bg-medium);
    margin-bottom: 2rem;
    border-left: 3px solid var(--color-accent);
}

.thanks-service-reference p {
    font-size: 1.1rem;
    color: var(--color-text-dark);
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.thanks-visual {
    flex: 1;
}

.thanks-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.main-legal {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.legal-updated {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--color-primary);
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--color-primary);
}

.legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}

.legal-section ul {
    margin: 1rem 0 1rem 2rem;
    color: var(--color-text-dark);
}

.legal-section li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.legal-section a {
    color: var(--color-accent);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--color-secondary);
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
    }

    .hero-content-left {
        padding-right: 0;
    }

    .hero-image-right {
        margin-left: 0;
        width: 100%;
    }

    .hero-title-large {
        font-size: 3rem;
    }

    .intro-irregular,
    .about-hero-irregular,
    .philosophy-block-staggered,
    .contact-content-irregular,
    .thanks-hero-centered {
        flex-direction: column;
    }

    .form-container-asymmetric {
        flex-direction: column;
        gap: 2rem;
    }

    .contact-form-irregular {
        transform: none;
    }

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

    .service-card {
        flex: 1 1 calc(50% - 2rem);
    }
}

@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .hero-title-large {
        font-size: 2.5rem;
    }

    .services-header-left h2,
    .trust-content-overlap h2,
    .cta-content-irregular h2 {
        font-size: 2rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .testimonials-offset {
        flex-direction: column;
    }

    .testimonial {
        transform: none !important;
    }

    .value-item {
        transform: none !important;
    }

    .footer-links-irregular {
        flex-direction: column;
        gap: 2rem;
    }
}
