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

:root {
    --primary: #4a3528;
    --secondary: #8b6f47;
    --accent: #c19a6b;
    --light: #f5f1ed;
    --dark: #2c1810;
    --text: #3d3d3d;
    --bg: #fafaf8;
}

body {
    font-family: 'Crimson Text', 'Georgia', serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', 'Georgia', serif;
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary);
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

header {
    position: relative;
    padding: 25px 0;
    background: var(--light);
    border-bottom: 1px solid var(--accent);
}

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

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

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

.nav-main a {
    font-size: 1.05rem;
    position: relative;
    padding: 5px 0;
}

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

.ad-notice {
    font-size: 0.85rem;
    color: var(--secondary);
    padding: 6px 14px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--accent);
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: var(--primary);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 20px;
}

.hero-text-offset {
    max-width: 650px;
    margin-left: 8%;
    background: rgba(245, 241, 237, 0.95);
    padding: 60px 50px;
    transform: translateY(-30px);
    box-shadow: 12px 12px 0 rgba(193, 154, 107, 0.3);
}

.hero-text-offset h1 {
    font-size: 3.2rem;
    margin-bottom: 25px;
    line-height: 1.15;
    color: var(--dark);
}

.hero-text-offset p {
    font-size: 1.25rem;
    margin-bottom: 35px;
    color: var(--text);
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.cta-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.section-intro-offset {
    padding: 100px 20px;
    position: relative;
}

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

.intro-text {
    flex: 1;
    padding-right: 40px;
    transform: translateY(40px);
}

.intro-text h2 {
    font-size: 2.6rem;
    margin-bottom: 30px;
    color: var(--primary);
}

.intro-text p {
    font-size: 1.15rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-image-wrap {
    flex: 0 0 480px;
    position: relative;
    transform: translateY(-50px);
}

.intro-image-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    box-shadow: -20px 20px 0 var(--accent);
}

.services-asymmetric {
    padding: 80px 20px 120px;
    background: var(--light);
}

.services-header {
    max-width: 700px;
    margin-bottom: 70px;
    padding-left: 60px;
}

.services-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card-offset {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: white;
    padding: 45px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.service-card-offset:nth-child(odd) {
    margin-right: 80px;
}

.service-card-offset:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-image {
    flex: 0 0 280px;
    height: 220px;
    background: var(--accent);
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 1.9rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.service-content p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary);
    margin-top: 15px;
}

.form-section-offset {
    padding: 100px 20px;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    transform: rotate(-1deg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.form-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-align: center;
}

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

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

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

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

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

.form-submit {
    text-align: center;
    margin-top: 35px;
}

.form-submit button {
    padding: 18px 60px;
    font-size: 1.15rem;
}

.testimonials-offset {
    padding: 100px 20px;
    background: var(--bg);
}

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

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

.testimonials-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-box {
    background: white;
    padding: 40px 45px;
    border-left: 5px solid var(--accent);
    box-shadow: 0 3px 15px rgba(0,0,0,0.06);
}

.testimonial-box:nth-child(2) {
    margin-left: 100px;
}

.testimonial-box:nth-child(3) {
    margin-right: 80px;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
    font-size: 1.05rem;
}

.about-section {
    padding: 100px 20px;
}

.about-layout {
    display: flex;
    gap: 70px;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 2.6rem;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image-section {
    flex: 0 0 500px;
    height: 600px;
    background: var(--accent);
}

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

.contact-section {
    padding: 100px 20px;
    background: var(--light);
}

.contact-grid {
    display: flex;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.6rem;
    margin-bottom: 40px;
}

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

.contact-detail h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    color: var(--secondary);
}

.contact-detail p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    height: 500px;
    background: var(--accent);
}

.footer {
    background: var(--dark);
    color: #b8a998;
    padding: 60px 20px 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h3 {
    color: var(--accent);
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
    font-size: 1rem;
    line-height: 1.8;
    display: block;
    margin-bottom: 10px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(193, 154, 107, 0.3);
    font-size: 0.95rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 24, 16, 0.97);
    color: white;
    padding: 25px 20px;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

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

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

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

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.legal-page {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: var(--primary);
}

.legal-page h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.legal-page p {
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    margin-bottom: 10px;
    font-size: 1.05rem;
    line-height: 1.7;
}

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

.thanks-content {
    max-width: 700px;
    background: white;
    padding: 70px 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transform: rotate(1deg);
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--secondary);
}

.thanks-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.thanks-cta {
    margin-top: 40px;
}

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

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s ease;
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-main {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--light);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid var(--accent);
        display: none;
    }

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

    .hero-text-offset {
        margin-left: 0;
        padding: 40px 30px;
    }

    .hero-text-offset h1 {
        font-size: 2.4rem;
    }

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

    .intro-text {
        transform: none;
        padding-right: 0;
    }

    .intro-image-wrap {
        flex: 1;
        transform: none;
    }

    .service-card-offset {
        flex-direction: column !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

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

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

    .about-image-section {
        flex: none;
        width: 100%;
        height: 400px;
    }

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

    .form-wrapper {
        padding: 40px 30px;
    }

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

.disclaimer-section {
    padding: 60px 20px;
    background: #f9f6f3;
    border-top: 1px solid var(--accent);
    border-bottom: 1px solid var(--accent);
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-content h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.disclaimer-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
}
