:root {
    --color-primary: #2c3e50;
    --color-secondary: #8b7355;
    --color-accent: #c49a6c;
    --color-light: #f5f1eb;
    --color-dark: #1a252f;
    --color-white: #ffffff;
    --color-text: #3d3d3d;
    --color-muted: #6c757d;
    --color-bg-alt: #e8e2d9;
    --font-heading: 'Georgia', serif;
    --font-body: 'Segoe UI', 'Helvetica Neue', Arial, 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-text);
    background-color: var(--color-white);
}

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

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

p {
    margin-bottom: 1rem;
}

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

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

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

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

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

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.97);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

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

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

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

.nav-links a {
    font-size: 0.95rem;
    color: var(--color-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(--color-accent);
    transition: width 0.3s ease;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--color-muted);
    background-color: var(--color-bg-alt);
    padding: 4px 10px;
    border-radius: 3px;
}

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

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-primary);
    transition: all 0.3s ease;
}

/* Hero Asymmetric */
.hero-asymmetric {
    padding: 160px 0 100px;
    background-color: var(--color-light);
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    flex: 1;
    padding-right: 40px;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.15rem;
    color: var(--color-muted);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image-wrapper {
    flex: 1.2;
    position: relative;
}

.hero-image-main {
    width: 100%;
    height: 500px;
    background-color: var(--color-bg-alt);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-image-main img {
    width: 100%;
    height: 100%;
}

.hero-image-offset {
    position: absolute;
    bottom: -40px;
    left: -60px;
    width: 220px;
    height: 280px;
    background-color: var(--color-secondary);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 10px 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-image-offset img {
    width: 100%;
    height: 100%;
}

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

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

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

.section-dark h2,
.section-dark h3 {
    color: var(--color-white);
}

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

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

.section-header h2 {
    margin-bottom: 1rem;
}

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

.section-header.centered p {
    margin: 0 auto;
}

/* Asymmetric Layout */
.asymmetric-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 80px;
}

.asymmetric-row:last-child {
    margin-bottom: 0;
}

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

.asymmetric-content {
    flex: 1;
}

.asymmetric-image {
    flex: 1;
    position: relative;
}

.asymmetric-image-inner {
    background-color: var(--color-bg-alt);
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

.asymmetric-image-inner img {
    width: 100%;
    height: 100%;
}

.asymmetric-image-accent {
    position: absolute;
    width: 120px;
    height: 120px;
    background-color: var(--color-accent);
    border-radius: 50%;
    z-index: -1;
}

.asymmetric-image-accent.top-right {
    top: -30px;
    right: -30px;
}

.asymmetric-image-accent.bottom-left {
    bottom: -30px;
    left: -30px;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: var(--color-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-card-image img {
    width: 100%;
    height: 100%;
}

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

.service-card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.service-card-content p {
    font-size: 0.95rem;
    color: var(--color-muted);
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 1rem;
}

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

/* Staggered Cards */
.staggered-services {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.staggered-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.staggered-card:nth-child(even) {
    margin-top: 60px;
}

.staggered-card-image {
    width: 140px;
    height: 140px;
    flex-shrink: 0;
    background-color: var(--color-bg-alt);
    border-radius: 8px;
    overflow: hidden;
}

.staggered-card-image img {
    width: 100%;
    height: 100%;
}

.staggered-card-content h4 {
    margin-bottom: 0.5rem;
}

.staggered-card-content p {
    font-size: 0.9rem;
    color: var(--color-muted);
    margin-bottom: 0.8rem;
}

/* Overlapping Section */
.overlapping-section {
    position: relative;
    padding: 120px 0;
}

.overlapping-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background-color: var(--color-primary);
    z-index: 0;
}

.overlapping-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 60px;
}

.overlapping-text {
    flex: 1;
    color: var(--color-white);
    padding: 40px;
}

.overlapping-text h2 {
    color: var(--color-white);
}

.overlapping-image {
    flex: 1;
    height: 450px;
    background-color: var(--color-bg-alt);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.2);
}

.overlapping-image img {
    width: 100%;
    height: 100%;
}

/* Features List */
.features-list {
    list-style: none;
    margin: 1.5rem 0;
}

.features-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
}

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

.testimonial-card {
    flex: 1;
    background-color: var(--color-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-size: 5rem;
    font-family: var(--font-heading);
    color: var(--color-accent);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

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

.testimonial-role {
    font-size: 0.85rem;
    color: var(--color-muted);
}

/* CTA Section */
.cta-section {
    background-color: var(--color-secondary);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

/* Form Styles */
.form-section {
    background-color: var(--color-light);
    padding: 100px 0;
}

.form-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-container {
    flex: 1;
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: border-color 0.3s ease;
}

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

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

.form-submit {
    width: 100%;
    padding: 16px;
    font-size: 1.05rem;
}

/* Contact Info */
.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background-color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--color-white);
}

.contact-details h4 {
    margin-bottom: 0.3rem;
}

.contact-details p {
    color: var(--color-muted);
    margin-bottom: 0;
}

/* Footer */
.site-footer {
    background-color: var(--color-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 30px;
}

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

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

.footer-brand .logo {
    color: var(--color-white);
    font-size: 1.3rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

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

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

.footer-copyright {
    font-size: 0.85rem;
    opacity: 0.7;
}

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

.footer-legal a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

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

/* About Page */
.page-hero {
    padding: 150px 0 80px;
    background-color: var(--color-light);
    text-align: center;
}

.page-hero h1 {
    margin-bottom: 1rem;
}

.page-hero p {
    color: var(--color-muted);
    max-width: 600px;
    margin: 0 auto;
}

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

.team-member {
    flex: 1 1 calc(25% - 23px);
    min-width: 220px;
    text-align: center;
}

.team-photo {
    width: 180px;
    height: 180px;
    background-color: var(--color-bg-alt);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
}

.team-member h4 {
    margin-bottom: 0.3rem;
}

.team-member p {
    color: var(--color-muted);
    font-size: 0.9rem;
}

/* Values */
.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1 1 calc(33.333% - 27px);
    min-width: 250px;
    text-align: center;
    padding: 30px;
}

.value-icon {
    width: 70px;
    height: 70px;
    background-color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    fill: var(--color-white);
}

/* Contact Page Specific */
.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-main {
    flex: 2;
}

.contact-sidebar {
    flex: 1;
    background-color: var(--color-light);
    padding: 35px;
    border-radius: 8px;
}

.contact-sidebar h3 {
    margin-bottom: 1.5rem;
}

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

.legal-content h1 {
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content p,
.legal-content li {
    color: var(--color-text);
    line-height: 1.8;
}

.legal-content ul {
    margin: 1rem 0 1rem 1.5rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

/* Thanks Page */
.thanks-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--color-light);
    padding: 40px 20px;
}

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

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

.thanks-icon svg {
    width: 50px;
    height: 50px;
    fill: var(--color-white);
}

.thanks-content h1 {
    margin-bottom: 1rem;
}

.thanks-content p {
    color: var(--color-muted);
    margin-bottom: 2rem;
}

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

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    font-size: 0.9rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

/* Disclaimer */
.disclaimer {
    background-color: var(--color-bg-alt);
    padding: 25px;
    border-radius: 6px;
    margin: 2rem 0;
    font-size: 0.85rem;
    color: var(--color-muted);
    line-height: 1.7;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--color-accent);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 5px;
    width: 12px;
    height: 12px;
    background-color: var(--color-secondary);
    border-radius: 50%;
}

.timeline-year {
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-asymmetric .container {
        flex-direction: column;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
    }

    .hero-content p {
        max-width: 100%;
    }

    .hero-image-offset {
        left: 20px;
        bottom: -20px;
    }

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

    .overlapping-bg {
        width: 100%;
        height: 50%;
    }

    .overlapping-content {
        flex-direction: column;
    }

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

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

    .staggered-card:nth-child(even) {
        margin-top: 0;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }

    .header-inner {
        padding: 15px 20px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

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

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

    .mobile-toggle {
        display: flex;
    }

    .hero-asymmetric {
        padding: 130px 0 60px;
    }

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

    .section {
        padding: 60px 0;
    }

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

    .staggered-card {
        flex-direction: column;
        text-align: center;
    }

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

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

@media (max-width: 480px) {
    .hero-image-offset {
        width: 150px;
        height: 200px;
    }

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

    .team-member {
        flex: 1 1 100%;
    }

    .value-item {
        flex: 1 1 100%;
    }
}
