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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #7a9d89;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0ddd8;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.2rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.show {
    display: flex;
    justify-content: center;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    color: var(--bg-white);
    min-width: 300px;
}

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

.btn-accept, .btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--primary-color);
    color: white;
}

.btn-accept:hover {
    background: #1e3d29;
}

.btn-reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-reject:hover {
    background: white;
    color: var(--text-dark);
}

.nav-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 90%;
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

.nav-menu a:hover {
    color: var(--primary-color);
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    position: relative;
    padding-top: 6rem;
}

.hero-offset-left {
    width: 45%;
    position: relative;
    padding: 4rem 2rem 4rem 4rem;
}

.hero-visual {
    width: 100%;
    height: 600px;
    border-radius: 0 200px 200px 0;
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.15);
}

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

.hero-offset-right {
    width: 55%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
}

.hero-subtext {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.cta-primary, .cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.cta-primary:hover {
    background: #1e3d29;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 90, 61, 0.3);
}

.cta-secondary {
    background: transparent;
    color: var(--primary-color);
}

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

.overlap-intro {
    margin-top: -120px;
    padding: 0 4rem 4rem;
    position: relative;
    z-index: 10;
}

.intro-card-elevated {
    background: white;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    max-width: 900px;
    margin: 0 auto;
    transform: rotate(-1deg);
}

.intro-card-elevated h2 {
    color: var(--primary-color);
}

.diagonal-split {
    display: flex;
    align-items: center;
    padding: 6rem 4rem;
    gap: 4rem;
    background: var(--bg-light);
    transform: skewY(-2deg);
    margin: 4rem 0;
}

.diagonal-split > * {
    transform: skewY(2deg);
}

.diagonal-content-left {
    flex: 1;
    padding: 2rem;
}

.diagonal-visual-right {
    flex: 1;
    padding: 2rem;
}

.diagonal-visual-right img {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.irregular-stats {
    padding: 6rem 4rem;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
}

.stat-block {
    text-align: center;
    padding: 2rem;
}

.stat-offset-1 {
    transform: translateY(-20px) rotate(-2deg);
}

.stat-offset-2 {
    transform: translateY(20px);
}

.stat-offset-3 {
    transform: translateY(-10px) rotate(2deg);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.services-asymmetric {
    padding: 6rem 4rem;
}

.services-header-offset {
    max-width: 800px;
    margin-bottom: 4rem;
    transform: translateX(4rem);
}

.services-irregular-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 320px;
    max-width: 380px;
}

.service-card-1 {
    transform: rotate(-1deg);
}

.service-card-2 {
    transform: translateY(20px);
}

.service-card-3 {
    transform: rotate(1deg);
}

.service-card-4 {
    transform: translateY(-15px);
}

.service-card-5 {
    transform: rotate(-0.5deg);
}

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

.service-visual {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

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

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

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

.btn-service-select {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service-select:hover {
    background: #1e3d29;
    transform: translateY(-2px);
}

.staggered-testimonials {
    padding: 6rem 4rem;
    background: var(--bg-light);
}

.staggered-testimonials h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-offset {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.testimonial-left {
    transform: translateX(-3rem);
    max-width: 700px;
}

.testimonial-right {
    transform: translateX(3rem);
    max-width: 700px;
    margin-left: auto;
}

.testimonial-center {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1rem;
}

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

.diagonal-form-section {
    padding: 6rem 4rem;
    background: var(--primary-color);
    transform: skewY(-2deg);
    margin: 4rem 0;
}

.form-wrapper-asymmetric {
    max-width: 800px;
    margin: 0 auto;
    transform: skewY(2deg);
}

.form-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.form-intro h2 {
    color: white;
}

.form-intro p {
    color: rgba(255, 255, 255, 0.9);
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background: var(--bg-light);
    cursor: not-allowed;
}

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

.btn-submit:hover {
    background: #1e3d29;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 90, 61, 0.3);
}

.offset-final-cta {
    padding: 8rem 4rem;
    background: var(--bg-light);
}

.final-cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    transform: rotate(-1deg);
}

.footer-asymmetric {
    background: var(--text-dark);
    color: white;
    padding: 4rem 4rem 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 3rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 4rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
}

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

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

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sticky-cta.show {
    opacity: 1;
    visibility: visible;
}

.sticky-cta-btn {
    background: white;
    color: var(--primary-color);
    padding: 0.5rem 1.25rem;
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: scale(1.05);
}

.about-hero-offset {
    display: flex;
    padding: 8rem 4rem 6rem;
    gap: 4rem;
    align-items: center;
}

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

.about-hero-visual {
    flex: 1;
    transform: translateY(3rem) rotate(2deg);
}

.about-hero-visual img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-story-irregular {
    padding: 6rem 4rem;
    background: var(--bg-light);
    display: flex;
    gap: 4rem;
}

.story-block {
    flex: 1;
    padding: 2rem;
}

.story-left {
    transform: translateY(-2rem);
}

.story-right {
    transform: translateY(2rem);
}

.values-asymmetric {
    padding: 6rem 4rem;
    text-align: center;
}

.values-asymmetric h2 {
    margin-bottom: 4rem;
}

.values-grid-offset {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    max-width: 350px;
    text-align: left;
}

.value-offset-1 {
    transform: translateY(-20px) rotate(-1deg);
}

.value-offset-2 {
    transform: translateY(15px);
}

.value-offset-3 {
    transform: translateY(-10px) rotate(1deg);
}

.team-section-staggered {
    padding: 6rem 4rem;
    background: var(--bg-light);
}

.team-section-staggered h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.team-layout-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    max-width: 350px;
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.team-left {
    transform: translateX(-2rem) translateY(-1rem);
}

.team-right {
    transform: translateX(2rem) translateY(1rem);
}

.team-center {
    transform: translateY(2rem);
}

.cta-section-diagonal {
    padding: 6rem 4rem;
    background: var(--primary-color);
    text-align: center;
    color: white;
    transform: skewY(-2deg);
    margin: 4rem 0;
}

.cta-section-diagonal > * {
    transform: skewY(2deg);
}

.cta-section-diagonal h2 {
    color: white;
}

.cta-section-diagonal p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.services-hero-diagonal {
    padding: 8rem 4rem 6rem;
    background: var(--bg-light);
    transform: skewY(-2deg);
}

.services-hero-content {
    transform: skewY(2deg);
    max-width: 900px;
    margin: 0 auto;
}

.services-detailed-asymmetric {
    padding: 4rem 4rem 6rem;
}

.service-detail {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.service-layout-1 {
    transform: rotate(-0.5deg);
}

.service-layout-2 {
    transform: rotate(0.5deg);
    flex-direction: row-reverse;
}

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

.service-detail-visual img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 16px;
}

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

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-pricing-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0 1.5rem;
}

.price-label {
    font-weight: 600;
    color: var(--text-light);
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.process-timeline-offset {
    padding: 6rem 4rem;
    background: var(--bg-light);
}

.process-timeline-offset h2 {
    text-align: center;
    margin-bottom: 4rem;
}

.timeline-asymmetric {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.timeline-step {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-left {
    transform: translateX(-3rem);
    max-width: 700px;
}

.timeline-right {
    transform: translateX(3rem);
    max-width: 700px;
    margin-left: auto;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.services-form-diagonal {
    padding: 6rem 4rem;
    background: var(--primary-color);
    transform: skewY(-2deg);
}

.form-wrapper-services {
    max-width: 800px;
    margin: 0 auto;
    transform: skewY(2deg);
}

.form-wrapper-services h2 {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.contact-hero-offset {
    padding: 8rem 4rem 6rem;
    background: var(--bg-light);
    text-align: center;
}

.contact-hero-content h1 {
    margin-bottom: 1.5rem;
}

.contact-main-asymmetric {
    padding: 6rem 4rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.contact-info-block {
    flex: 1;
    transform: translateX(-2rem);
}

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

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.contact-item a {
    color: var(--text-light);
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

.contact-visual-offset {
    flex: 1;
    transform: translateX(2rem) translateY(2rem) rotate(1deg);
}

.contact-visual-offset img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-cta-diagonal {
    padding: 6rem 4rem;
    background: var(--bg-light);
    text-align: center;
}

.thanks-section-centered {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 4rem;
}

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

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-message {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.service-confirmation {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 3rem;
}

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

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: #1e3d29;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.legal-content {
    padding: 8rem 4rem 4rem;
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-date {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.legal-wrapper h2 {
    color: var(--primary-color);
    margin-top: 2rem;
}

.legal-wrapper ul {
    margin: 1rem 0 1rem 2rem;
}

.legal-wrapper li {
    margin-bottom: 0.5rem;
}

.legal-wrapper a {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-offset-left,
    .hero-offset-right {
        width: 100%;
        padding: 2rem;
    }

    .hero-visual {
        border-radius: 20px;
    }

    .diagonal-split,
    .about-hero-offset,
    .contact-main-asymmetric,
    .service-detail {
        flex-direction: column;
    }

    .about-hero-visual,
    .contact-visual-offset {
        transform: none;
    }

    .testimonial-left,
    .testimonial-right,
    .timeline-left,
    .timeline-right {
        transform: none;
    }

    .services-header-offset {
        transform: none;
    }

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

@media (max-width: 768px) {
    .nav-floating {
        flex-wrap: wrap;
        padding: 1rem;
        top: 1rem;
        border-radius: 20px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        width: 100%;
        flex-direction: column;
        display: none;
        padding-top: 1rem;
    }

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

    .irregular-stats {
        flex-direction: column;
    }

    .stat-offset-1,
    .stat-offset-2,
    .stat-offset-3 {
        transform: none;
    }

    .services-irregular-grid {
        flex-direction: column;
    }

    .service-card-1,
    .service-card-2,
    .service-card-3,
    .service-card-4,
    .service-card-5 {
        transform: none;
        max-width: 100%;
    }

    .about-story-irregular {
        flex-direction: column;
    }

    .story-left,
    .story-right {
        transform: none;
    }

    .team-left,
    .team-right,
    .team-center {
        transform: none;
    }

    .contact-info-block {
        transform: none;
    }

    .sticky-cta {
        flex-direction: column;
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1rem;
    }

    .sticky-cta span {
        font-size: 0.875rem;
    }
}