:root {
    --primary: #8B4513;
    --primary-dark: #6B3410;
    --secondary: #D2691E;
    --accent: #F4A460;
    --bg-light: #FDF5E6;
    --bg-cream: #FAF0E6;
    --bg-warm: #F5DEB3;
    --text-dark: #2C1810;
    --text-medium: #5D4037;
    --text-light: #8D6E63;
    --white: #FFFFFF;
    --border: #DEB887;
    --shadow: rgba(139, 69, 19, 0.15);
}

* {
    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(--text-dark);
    background-color: var(--bg-light);
}

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

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

header {
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.ad-disclosure {
    background-color: var(--bg-warm);
    color: var(--text-medium);
    font-size: 12px;
    text-align: center;
    padding: 6px 12px;
}

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

.logo:hover {
    color: var(--primary-dark);
}

nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
}

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

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    margin: 6px 0;
    transition: 0.3s;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-cream);
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    padding: 80px 0;
}

.hero-text {
    max-width: 600px;
    margin-left: 8%;
}

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

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

.hero-offset-card {
    position: absolute;
    right: 5%;
    bottom: 15%;
    background: var(--white);
    padding: 32px;
    max-width: 320px;
    box-shadow: 0 20px 60px var(--shadow);
    transform: rotate(2deg);
}

.hero-offset-card h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 12px;
}

.hero-offset-card p {
    font-size: 14px;
    color: var(--text-medium);
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.25s;
    cursor: pointer;
    border: none;
}

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

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

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

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

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

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

.section {
    padding: 100px 0;
}

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

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

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

.section-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 17px;
    color: var(--text-medium);
    max-width: 600px;
}

.section-header-center {
    text-align: center;
}

.section-header-center p {
    margin-left: auto;
    margin-right: auto;
}

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

.asymmetric-intro-text {
    flex: 1;
    padding-top: 40px;
}

.asymmetric-intro-visual {
    flex: 0 0 45%;
    position: relative;
}

.asymmetric-intro-visual .img-wrapper {
    background-color: var(--border);
    overflow: hidden;
}

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

.asymmetric-intro-visual .floating-stat {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--primary);
    color: var(--white);
    padding: 24px;
    text-align: center;
}

.floating-stat strong {
    display: block;
    font-size: 32px;
    font-weight: 700;
}

.floating-stat span {
    font-size: 13px;
    opacity: 0.9;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: var(--white);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card-img {
    height: 200px;
    background-color: var(--bg-warm);
    overflow: hidden;
}

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

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

.service-card-content h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

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

.service-price .unit {
    font-size: 13px;
    color: var(--text-light);
}

.staggered-content {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.staggered-row {
    display: flex;
    gap: 60px;
    align-items: center;
}

.staggered-row.reverse {
    flex-direction: row-reverse;
}

.staggered-text {
    flex: 1;
}

.staggered-text h3 {
    font-size: 28px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.staggered-text p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.staggered-visual {
    flex: 0 0 40%;
    background-color: var(--border);
    overflow: hidden;
}

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

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

.testimonial-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: var(--white);
    padding: 36px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 8px 32px var(--shadow);
}

.testimonial-card blockquote {
    font-size: 16px;
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-section .btn:hover {
    background-color: var(--accent);
    color: var(--text-dark);
}

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

.contact-info {
    flex: 0 0 35%;
}

.contact-info h3 {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.contact-detail {
    margin-bottom: 24px;
}

.contact-detail strong {
    display: block;
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-detail span {
    font-size: 16px;
    color: var(--text-dark);
}

.contact-form-wrapper {
    flex: 1;
    background: var(--white);
    padding: 40px;
    box-shadow: 0 12px 40px var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid var(--border);
    background-color: var(--bg-light);
    color: var(--text-dark);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 69, 19, 0.1);
}

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

.form-submit {
    display: flex;
    justify-content: flex-end;
}

footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

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

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

.footer-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent);
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--white);
}

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

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

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

.cookie-text {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.cookie-btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

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

.cookie-accept:hover {
    background: var(--secondary);
}

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

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

.page-header {
    background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-warm) 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

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

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

.legal-content h2 {
    font-size: 24px;
    color: var(--text-dark);
    margin: 40px 0 16px;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 16px;
    color: var(--text-medium);
}

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

.legal-content ul li {
    margin-bottom: 8px;
    color: var(--text-medium);
}

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

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

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

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

.thanks-content h1 {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.thanks-content p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.about-hero {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

.about-hero-text h2 {
    font-size: 34px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-hero-text p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.about-hero-image {
    flex: 0 0 45%;
    background-color: var(--border);
    overflow: hidden;
}

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

.about-values {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 250px;
    text-align: center;
    padding: 40px 24px;
    background: var(--white);
    border: 1px solid var(--border);
}

.value-item h4 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.value-item p {
    font-size: 14px;
    color: var(--text-medium);
}

.disclaimer {
    background: var(--bg-warm);
    padding: 24px;
    margin-top: 40px;
    border-left: 4px solid var(--secondary);
}

.disclaimer p {
    font-size: 13px;
    color: var(--text-medium);
    margin: 0;
}

@media (max-width: 992px) {
    .hero-text h1 {
        font-size: 40px;
    }

    .hero-offset-card {
        position: static;
        transform: none;
        margin-top: 40px;
        max-width: 100%;
    }

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

    .asymmetric-intro-visual {
        flex: none;
        width: 100%;
    }

    .staggered-row,
    .staggered-row.reverse {
        flex-direction: column;
    }

    .staggered-visual {
        flex: none;
        width: 100%;
        height: 300px;
    }

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

    .contact-info {
        flex: none;
    }

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

    .about-hero-image {
        flex: none;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 12px 16px;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
    }

    nav.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-text {
        margin-left: 0;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

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

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

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

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

    .page-header h1 {
        font-size: 32px;
    }
}
