:root {
    --color-primary: #8B5A2B;
    --color-secondary: #D4A574;
    --color-accent: #2F4F4F;
    --color-dark: #1a1a1a;
    --color-light: #faf8f5;
    --color-muted: #6b6b6b;
    --color-border: #e0d6cc;
    --color-bg-alt: #f5f0eb;
    --font-heading: 'Georgia', serif;
    --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-dark);
    background-color: var(--color-light);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

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

/* Header - Asymmetric Style */
.site-header {
    background-color: var(--color-light);
    border-bottom: 1px solid var(--color-border);
    position: relative;
}

.header-top {
    background-color: var(--color-accent);
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ad-disclosure {
    background-color: rgba(255,255,255,0.15);
    padding: 4px 12px;
    border-radius: 3px;
}

.header-main {
    padding: 20px 0;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: bold;
    color: var(--color-primary);
    letter-spacing: 1px;
}

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

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

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

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

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

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--color-dark);
}

/* Hero Section - Offset Style */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
    padding: 60px 40px;
    background-color: var(--color-light);
    margin-left: 5%;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.1);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    line-height: 1.2;
    color: var(--color-dark);
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    color: var(--color-muted);
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

/* Section Styles */
.section {
    padding: 80px 0;
}

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

.section-dark {
    background-color: var(--color-accent);
    color: #fff;
}

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

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

.section-dark .section-header h2 {
    color: #fff;
}

.section-header p {
    font-size: 18px;
    color: var(--color-muted);
    max-width: 600px;
}

.section-dark .section-header p {
    color: rgba(255,255,255,0.8);
}

/* Asymmetric Grid */
.asymmetric-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.asymmetric-grid .item-large {
    flex: 2 1 400px;
}

.asymmetric-grid .item-small {
    flex: 1 1 280px;
}

/* Services Layout */
.services-intro {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
    align-items: center;
}

.services-intro-text {
    flex: 1;
}

.services-intro-image {
    flex: 0 0 400px;
    height: 300px;
    background-color: var(--color-secondary);
    position: relative;
}

.services-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

/* Service Cards - Staggered */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 320px;
    background-color: #fff;
    padding: 35px;
    border-left: 4px solid var(--color-primary);
    box-shadow: 0 5px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-card:nth-child(even) {
    transform: translateY(30px);
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card:nth-child(even):hover {
    transform: translateY(25px);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--color-dark);
}

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

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

.service-price span {
    font-size: 14px;
    font-weight: normal;
    color: var(--color-muted);
}

/* About Section - Split Layout */
.about-split {
    display: flex;
    min-height: 500px;
}

.about-image {
    flex: 0 0 50%;
    background-color: var(--color-secondary);
    position: relative;
    overflow: hidden;
}

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

.about-content {
    flex: 0 0 50%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--color-bg-alt);
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--color-dark);
}

.about-content p {
    margin-bottom: 20px;
    color: var(--color-muted);
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    flex: 1 1 200px;
    padding: 20px;
    background-color: #fff;
}

.about-feature h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--color-primary);
}

/* Testimonials */
.testimonials-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1 1 300px;
    padding: 40px;
    background-color: #fff;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 80px;
    font-family: var(--font-heading);
    color: var(--color-secondary);
    line-height: 1;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    padding-top: 40px;
    color: var(--color-muted);
}

.testimonial-author {
    font-weight: bold;
    color: var(--color-dark);
}

/* CTA Section */
.cta-section {
    background-color: var(--color-primary);
    color: #fff;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-content .btn-secondary {
    border-color: #fff;
    color: #fff;
}

.cta-content .btn-secondary:hover {
    background-color: #fff;
    color: var(--color-primary);
}

/* Contact Form */
.contact-wrapper {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--color-border);
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color 0.3s ease;
    background-color: #fff;
}

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

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

/* Contact Info */
.contact-info-box {
    background-color: var(--color-accent);
    color: #fff;
    padding: 40px;
    margin-bottom: 30px;
}

.contact-info-box h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 25px;
}

.contact-info-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.contact-info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.contact-info-item strong {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

/* Footer */
.site-footer {
    background-color: var(--color-dark);
    color: #fff;
    padding: 60px 0 30px;
}

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

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

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

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

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

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

.footer-col a:hover {
    color: #fff;
}

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

.footer-disclaimer {
    background-color: rgba(255,255,255,0.05);
    padding: 20px;
    margin-bottom: 30px;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

/* Legal Pages */
.legal-content {
    padding: 60px 0;
}

.legal-content h1 {
    font-family: var(--font-heading);
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--color-dark);
}

.legal-content h2 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--color-dark);
}

.legal-content h3 {
    font-size: 18px;
    margin: 25px 0 10px;
    color: var(--color-dark);
}

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

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

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

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

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

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

.thanks-icon svg {
    width: 40px;
    height: 40px;
    fill: #fff;
}

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

.thanks-content p {
    color: var(--color-muted);
    margin-bottom: 30px;
    font-size: 18px;
}

.thanks-service {
    background-color: var(--color-bg-alt);
    padding: 20px;
    margin-bottom: 30px;
}

.thanks-service strong {
    color: var(--color-primary);
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: var(--color-secondary);
}

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

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

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

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

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

.cookie-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

/* Process Steps */
.process-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    counter-reset: process-counter;
}

.process-step {
    flex: 1 1 250px;
    position: relative;
    padding-left: 80px;
}

.process-step::before {
    counter-increment: process-counter;
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

/* Stats Section */
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    text-align: center;
}

.stat-item {
    flex: 1 1 200px;
    padding: 30px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--color-secondary);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Page Header */
.page-header {
    background-color: var(--color-accent);
    color: #fff;
    padding: 80px 0;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 10%;
    width: 80%;
    height: 4px;
    background-color: var(--color-primary);
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-bg {
        width: 50%;
    }

    .hero-content {
        max-width: 450px;
    }

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

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

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

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

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

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }

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

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

    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .hero {
        min-height: auto;
    }

    .hero-bg {
        position: relative;
        width: 100%;
        height: 300px;
    }

    .hero-content {
        margin: -60px 20px 40px;
        max-width: none;
        box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    }

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

    .section {
        padding: 50px 0;
    }

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

    .service-card:nth-child(even) {
        transform: none;
    }

    .service-card:hover,
    .service-card:nth-child(even):hover {
        transform: translateY(-5px);
    }

    .contact-wrapper {
        gap: 40px;
    }

    .about-content {
        padding: 40px 20px;
    }

    .page-header {
        padding: 50px 0;
    }

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

@media (max-width: 480px) {
    .header-top .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}
