:root {
    --primary: #2d4a3e;
    --secondary: #8b7355;
    --accent: #c9a87c;
    --dark: #1a1a1a;
    --light: #f8f6f3;
    --white: #ffffff;
    --gray: #6b6b6b;
    --gray-light: #e8e4df;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    background-color: var(--light);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background-color: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.ad-disclosure {
    background-color: var(--gray-light);
    color: var(--gray);
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 3px;
}

.nav-main {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-main a {
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    transition: 0.3s;
}

.hero-asymmetric {
    padding: 80px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1 1 400px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 35px;
    max-width: 480px;
}

.hero-image-wrapper {
    flex: 1 1 450px;
    position: relative;
}

.hero-image-main {
    width: 100%;
    height: 420px;
    background-color: var(--gray-light);
    border-radius: 8px;
    overflow: hidden;
    transform: rotate(2deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

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

.hero-image-offset {
    position: absolute;
    width: 200px;
    height: 200px;
    background-color: var(--accent);
    border-radius: 8px;
    bottom: -30px;
    left: -40px;
    z-index: -1;
    transform: rotate(-3deg);
    overflow: hidden;
}

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    background-color: #1e3329;
}

.btn-secondary {
    background-color: var(--accent);
    color: var(--dark);
}

.btn-secondary:hover {
    background-color: #b8956a;
}

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

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

.section {
    padding: 80px 0;
}

.section-alt {
    background-color: var(--white);
}

.section-dark {
    background-color: var(--dark);
    color: var(--white);
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.section-dark .section-header h2 {
    color: var(--white);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
}

.section-dark .section-header p {
    color: var(--gray-light);
}

.offset-left {
    margin-left: 80px;
}

.offset-right {
    margin-right: 80px;
}

.asymmetric-intro {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
}

.asymmetric-intro-content {
    flex: 1 1 350px;
}

.asymmetric-intro-visual {
    flex: 1 1 400px;
    position: relative;
}

.stacked-images {
    position: relative;
    height: 350px;
}

.stacked-img {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.stacked-img:nth-child(1) {
    width: 280px;
    height: 220px;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: var(--secondary);
}

.stacked-img:nth-child(2) {
    width: 240px;
    height: 180px;
    bottom: 0;
    right: 0;
    z-index: 1;
    transform: rotate(-4deg);
    background-color: var(--accent);
}

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

.services-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 35px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    align-items: center;
    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);
}

.service-card:nth-child(odd) {
    margin-left: 0;
    margin-right: 60px;
}

.service-card:nth-child(even) {
    margin-left: 60px;
    margin-right: 0;
    flex-direction: row-reverse;
}

.service-card-image {
    flex: 0 0 200px;
    height: 160px;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--gray-light);
}

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

.service-card-content {
    flex: 1 1 300px;
}

.service-card-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.service-card-content p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.service-price span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray);
}

.testimonials-section {
    background-color: var(--primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-header h2 {
    color: var(--white);
    font-size: 2.2rem;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    flex: 1 1 320px;
    max-width: 380px;
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    position: relative;
}

.testimonial-card:nth-child(2) {
    margin-top: 40px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark);
}

.testimonial-name {
    font-weight: 600;
    color: var(--dark);
}

.testimonial-location {
    font-size: 0.85rem;
    color: var(--gray);
}

.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    text-align: center;
    position: relative;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.15rem;
    margin-bottom: 35px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-section .btn:hover {
    background-color: var(--light);
}

.footer {
    background-color: var(--dark);
    color: var(--gray-light);
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 20px;
}

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

.footer-col a {
    color: var(--gray-light);
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
    font-size: 0.9rem;
}

.disclaimer {
    background-color: var(--gray-light);
    padding: 25px;
    margin: 40px 0;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.7;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-light);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    text-align: center;
}

.page-header {
    background-color: var(--primary);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
}

.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--dark);
}

.content-section h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: var(--dark);
}

.content-section p {
    margin-bottom: 15px;
    color: var(--gray);
}

.content-section ul {
    margin: 15px 0 15px 25px;
    list-style: disc;
}

.content-section ul li {
    margin-bottom: 8px;
    color: var(--gray);
}

.about-story {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.about-story-content {
    flex: 1 1 400px;
}

.about-story-visual {
    flex: 1 1 350px;
    position: relative;
}

.about-image-container {
    position: relative;
    height: 400px;
}

.about-img-main {
    width: 100%;
    height: 320px;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--secondary);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-accent {
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: var(--accent);
    border-radius: 10px;
    bottom: 0;
    right: -20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: var(--dark);
    font-weight: 700;
}

.about-img-accent .number {
    font-size: 2.5rem;
    line-height: 1;
}

.about-img-accent .text {
    font-size: 0.9rem;
    text-align: center;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    flex: 1 1 280px;
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.value-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.contact-info {
    flex: 1 1 300px;
}

.contact-form-wrapper {
    flex: 1 1 400px;
}

.contact-info-item {
    margin-bottom: 30px;
}

.contact-info-item h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.contact-info-item p {
    color: var(--gray);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-detailed {
    flex: 1 1 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 40px;
    background-color: var(--white);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-detailed:nth-child(even) {
    flex-direction: row-reverse;
}

.service-detailed-image {
    flex: 0 0 300px;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    background-color: var(--gray-light);
}

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

.service-detailed-content {
    flex: 1 1 350px;
}

.service-detailed-content h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-detailed-content p {
    color: var(--gray);
    margin-bottom: 15px;
}

.service-detailed-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.service-detailed-content ul li {
    margin-bottom: 8px;
    color: var(--gray);
    position: relative;
    padding-left: 15px;
}

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

.service-price-tag {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 1.3rem;
    font-weight: 700;
    margin-top: 10px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1 1 500px;
    font-size: 0.95rem;
}

.cookie-content a {
    color: var(--accent);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: opacity 0.3s;
}

.cookie-btn:hover {
    opacity: 0.9;
}

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

.cookie-reject {
    background-color: var(--gray);
    color: var(--white);
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.thanks-content {
    max-width: 550px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--white);
}

.thanks-content h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.thanks-content p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--white);
    z-index: 999;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

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

.mobile-nav a {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--dark);
}

@media (max-width: 900px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .service-card:nth-child(odd),
    .service-card:nth-child(even) {
        margin-left: 0;
        margin-right: 0;
        flex-direction: column;
    }

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

    .service-detailed:nth-child(even) {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-main {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-content h1 {
        font-size: 1.9rem;
    }

    .section {
        padding: 50px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .footer-grid {
        gap: 30px;
    }

    .form-container {
        padding: 25px;
    }

    .service-detailed-image {
        flex: 1 1 100%;
        height: 200px;
    }
}
