:root {
    --primary: #2d2926;
    --secondary: #8b4513;
    --accent: #c9a961;
    --light: #f5f2ed;
    --dark: #1a1817;
    --text: #3d3a37;
    --text-light: #6b6660;
    --white: #ffffff;
    --shadow: rgba(45, 41, 38, 0.12);
    --transition: 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
}

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

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

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

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

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.ad-disclosure {
    background-color: var(--dark);
    color: var(--light);
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
}

.top-nav {
    background-color: var(--white);
    box-shadow: 0 2px 12px var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.logo span {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    color: var(--text);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background-color: var(--primary);
    margin: 5px 0;
    transition: var(--transition);
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: var(--light);
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.15;
    color: var(--primary);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-image {
    flex: 1.2;
    position: relative;
    background-color: var(--secondary);
}

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

.hero-offset-box {
    position: absolute;
    bottom: -40px;
    left: -60px;
    background-color: var(--white);
    padding: 32px 40px;
    box-shadow: 0 16px 48px var(--shadow);
    z-index: 3;
    max-width: 320px;
}

.hero-offset-box h3 {
    color: var(--secondary);
    font-size: 18px;
    margin-bottom: 8px;
}

.hero-offset-box p {
    font-size: 15px;
    color: var(--text-light);
}

.btn-primary {
    display: inline-block;
    background-color: var(--secondary);
    color: var(--white);
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--secondary);
    padding: 14px 34px;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid var(--secondary);
    cursor: pointer;
    transition: all var(--transition);
}

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

.section {
    padding: 100px 0;
}

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

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

.section-offset {
    background-color: var(--white);
    position: relative;
}

.section-title {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 700;
}

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

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 600px;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

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

.asymmetric-grid-reverse {
    flex-direction: row-reverse;
}

.asymmetric-col-wide {
    flex: 1.4;
}

.asymmetric-col-narrow {
    flex: 1;
}

.offset-image-container {
    position: relative;
    background-color: var(--secondary);
}

.offset-image-container img {
    display: block;
    width: 100%;
}

.offset-image-container::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent);
    z-index: -1;
}

.feature-list {
    list-style: none;
    margin-top: 30px;
}

.feature-list li {
    padding: 14px 0;
    padding-left: 36px;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.feature-list li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: 14px;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: var(--white);
    box-shadow: 0 8px 32px var(--shadow);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px var(--shadow);
}

.service-card-image {
    height: 200px;
    background-color: var(--secondary);
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 28px;
}

.service-card h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
}

.service-price span {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

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

.testimonial-section::before {
    content: '"';
    position: absolute;
    top: -40px;
    left: 10%;
    font-size: 400px;
    color: rgba(255, 255, 255, 0.03);
    font-family: Georgia, serif;
}

.testimonial-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--white);
}

.testimonial-text {
    font-size: 26px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 30px;
}

.testimonial-author {
    font-size: 18px;
    color: var(--accent);
}

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

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

.cta-section p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.form-container {
    background-color: var(--white);
    padding: 50px;
    box-shadow: 0 16px 64px var(--shadow);
    max-width: 600px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 2px solid #e5e2dd;
    background-color: var(--white);
    transition: border-color var(--transition);
    font-family: inherit;
}

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

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

.contact-info-box {
    background-color: var(--light);
    padding: 40px;
    height: 100%;
}

.contact-info-box h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 30px;
}

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

.contact-info-item strong {
    display: block;
    color: var(--secondary);
    margin-bottom: 6px;
}

.footer {
    background-color: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 24px;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
}

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

.legal-content h1 {
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 24px;
    color: var(--primary);
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-content p {
    margin-bottom: 16px;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-content li {
    margin-bottom: 8px;
}

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

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

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

.cookie-banner p {
    font-size: 15px;
    flex: 1;
}

.cookie-banner p a {
    color: var(--accent);
}

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

.cookie-btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}

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

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

.cookie-btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-reject:hover {
    border-color: var(--white);
}

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

.thanks-content h1 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-header h1 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.about-intro {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}

.about-intro-content {
    flex: 1;
}

.about-intro-content h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 24px;
}

.about-intro-image {
    flex: 1;
    background-color: var(--secondary);
}

.team-section {
    background-color: var(--light);
    padding: 100px 0;
}

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

.value-card {
    flex: 1;
    text-align: center;
    padding: 40px 30px;
    background-color: var(--white);
    box-shadow: 0 8px 32px var(--shadow);
}

.value-card h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 16px;
}

.value-card p {
    color: var(--text-light);
}

.disclaimer-box {
    background-color: #faf8f5;
    border-left: 4px solid var(--accent);
    padding: 24px 30px;
    margin: 40px 0;
    font-size: 14px;
    color: var(--text-light);
}

.contact-grid {
    display: flex;
    gap: 60px;
    padding: 80px 0;
}

.contact-form-col {
    flex: 1.2;
}

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

@media (max-width: 992px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: 0 8px 24px var(--shadow);
    }

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

    .nav-links li {
        border-bottom: 1px solid #eee;
    }

    .nav-links a {
        display: block;
        padding: 14px 0;
    }

    .nav-toggle {
        display: block;
    }

    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-content {
        padding: 60px 24px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-image {
        height: 400px;
    }

    .hero-offset-box {
        position: relative;
        bottom: auto;
        left: auto;
        margin: -40px 24px 40px;
    }

    .asymmetric-grid,
    .asymmetric-grid-reverse {
        flex-direction: column;
    }

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

    .contact-grid {
        flex-direction: column;
    }

    .about-intro {
        flex-direction: column;
    }

    .values-grid {
        flex-direction: column;
    }

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

@media (max-width: 600px) {
    .service-card {
        flex: 1 1 100%;
    }

    .form-container {
        padding: 30px 20px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 32px;
    }
}
