:root {
    --primary: #8B4513;
    --secondary: #D2691E;
    --accent: #CD853F;
    --dark: #3E2723;
    --light: #FFF8F0;
    --cream: #FAEBD7;
    --terracotta: #E07B53;
    --charcoal: #2C2416;
    --muted: #6D5D4A;
    --white: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--light);
}

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

.nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.ad-disclosure {
    background: var(--cream);
    padding: 8px 20px;
    font-size: 0.75rem;
    color: var(--muted);
    text-align: center;
    border-bottom: 1px solid rgba(139,69,19,0.1);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
}

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

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

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

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracotta);
    transition: width 0.3s ease;
}

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

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--charcoal);
    transition: all 0.3s ease;
}

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-content-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.hero-text {
    flex: 1;
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

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

.hero-text h1 em {
    color: var(--terracotta);
    font-style: normal;
}

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

.hero-image-offset {
    flex: 1.2;
    position: relative;
    margin-right: -100px;
}

.hero-image-offset img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 0 0 0 80px;
}

.hero-image-offset::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    background: var(--cream);
    z-index: -1;
    border-radius: 50%;
}

.btn-primary {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 16px 38px;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 16px 38px;
    text-decoration: none;
    font-size: 1rem;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

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

.section-overlap {
    position: relative;
    padding: 100px 0;
}

.overlap-block {
    background: var(--cream);
    padding: 80px 60px;
    margin-left: 15%;
    position: relative;
}

.overlap-block::before {
    content: '';
    position: absolute;
    top: -40px;
    left: -60px;
    width: 120px;
    height: 120px;
    border: 3px solid var(--terracotta);
    z-index: -1;
}

.overlap-block h2 {
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 400;
}

.overlap-block p {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 600px;
    line-height: 1.8;
}

.services-asymmetric {
    padding: 120px 0;
    background: var(--white);
}

.services-header {
    text-align: left;
    margin-bottom: 70px;
    padding-left: 10%;
}

.services-header h2 {
    font-size: 2.8rem;
    color: var(--dark);
    font-weight: 400;
    margin-bottom: 15px;
}

.services-header p {
    color: var(--muted);
    font-size: 1.1rem;
}

.services-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 5%;
}

.service-card {
    background: var(--light);
    padding: 40px 35px;
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:nth-child(2) {
    margin-top: 50px;
}

.service-card:nth-child(4) {
    margin-top: -30px;
}

.service-card:nth-child(5) {
    margin-top: 40px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(139,69,19,0.12);
}

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

.service-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 1.8rem;
    color: var(--terracotta);
    font-weight: 600;
}

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

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

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

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.testimonial-content blockquote {
    font-size: 1.6rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 30px;
    color: var(--cream);
}

.testimonial-author {
    font-size: 1rem;
    color: var(--accent);
}

.cta-floating {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 80px 60px;
    margin: -60px 8% 80px 8%;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-floating h3 {
    font-size: 2rem;
    color: var(--white);
    font-weight: 400;
    max-width: 500px;
}

.cta-floating .btn-primary {
    background: var(--white);
    color: var(--primary);
    white-space: nowrap;
}

.cta-floating .btn-primary:hover {
    background: var(--cream);
}

.gallery-offset {
    padding: 80px 0;
}

.gallery-header {
    text-align: right;
    padding-right: 10%;
    margin-bottom: 50px;
}

.gallery-header h2 {
    font-size: 2.4rem;
    color: var(--dark);
    font-weight: 400;
}

.gallery-mosaic {
    display: flex;
    gap: 20px;
    padding: 0 5%;
}

.gallery-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.gallery-col:nth-child(2) {
    margin-top: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background-color: var(--cream);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.about-asymmetric {
    padding: 120px 0;
    position: relative;
}

.about-wrapper {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-image-stack {
    flex: 1;
    position: relative;
    min-height: 500px;
}

.about-image-stack img:first-child {
    width: 70%;
    height: 350px;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.about-image-stack img:last-child {
    width: 60%;
    height: 280px;
    object-fit: cover;
    position: absolute;
    bottom: 0;
    right: 0;
    border: 8px solid var(--white);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 25px;
    font-weight: 400;
}

.about-text p {
    color: var(--muted);
    font-size: 1.05rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-split {
    display: flex;
    min-height: 80vh;
}

.contact-info-side {
    flex: 1;
    background: var(--dark);
    color: var(--white);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-side h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
    font-weight: 400;
}

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

.contact-detail h4 {
    color: var(--accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

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

.contact-form-side {
    flex: 1.2;
    background: var(--light);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-side h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 35px;
    font-weight: 400;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--charcoal);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 18px;
    border: 1px solid rgba(139,69,19,0.2);
    background: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.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 {
    margin-top: 10px;
}

footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 60px 0 30px;
}

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

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

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(250,235,215,0.8);
}

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

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

.footer-col ul a {
    color: rgba(250,235,215,0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(250,235,215,0.6);
}

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

.footer-legal-links a {
    color: rgba(250,235,215,0.6);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

.disclaimer {
    background: var(--cream);
    padding: 40px;
    margin: 40px 5%;
    border-left: 4px solid var(--terracotta);
}

.disclaimer p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--charcoal);
    color: var(--white);
    padding: 25px 40px;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.2);
}

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

.cookie-banner p {
    font-size: 0.95rem;
    flex: 1;
}

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

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

.cookie-btn {
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

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

.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 {
    padding: 150px 0 80px;
    background: var(--cream);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    color: var(--dark);
    font-weight: 400;
    margin-bottom: 15px;
}

.page-header p {
    color: var(--muted);
    font-size: 1.1rem;
}

.legal-content {
    padding: 80px 0;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.6rem;
    color: var(--dark);
    margin: 40px 0 20px;
    font-weight: 500;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin: 30px 0 15px;
    font-weight: 500;
}

.legal-content p {
    color: var(--muted);
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 15px 0 25px 25px;
    color: var(--muted);
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

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

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

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

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

.thanks-content h1 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 400;
}

.thanks-content p {
    color: var(--muted);
    font-size: 1.1rem;
    margin-bottom: 35px;
    line-height: 1.7;
}

.about-values {
    padding: 100px 0;
    background: var(--cream);
}

.values-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.value-item {
    flex: 1 1 250px;
    text-align: center;
    padding: 30px;
}

.value-item h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.value-item p {
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.process-section {
    padding: 100px 0;
}

.process-steps {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.process-step {
    flex: 1 1 200px;
    position: relative;
    padding-left: 30px;
}

.process-step::before {
    content: attr(data-step);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 3rem;
    color: var(--cream);
    font-weight: 700;
    line-height: 1;
    z-index: -1;
}

.process-step h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.process-step p {
    color: var(--muted);
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .hero-content-wrapper {
        flex-direction: column;
    }

    .hero-image-offset {
        margin-right: 0;
        width: 100%;
    }

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

    .overlap-block {
        margin-left: 5%;
        padding: 50px 30px;
    }

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

    .about-image-stack {
        width: 100%;
        min-height: 400px;
    }

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

    .cta-floating {
        flex-direction: column;
        text-align: center;
        margin: -40px 5% 60px 5%;
        padding: 50px 30px;
    }

    .gallery-mosaic {
        flex-direction: column;
    }

    .gallery-col:nth-child(2) {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px 40px;
        gap: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

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

    .hamburger {
        display: flex;
    }

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

    .services-header {
        padding-left: 5%;
    }

    .service-card {
        flex: 1 1 100%;
        margin-top: 0 !important;
    }

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

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

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