/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors from LG Mini Branding Card */
    --brand-light-green: #bdc7b1;
    --brand-cream: #fbf6e9;
    --brand-muted-green: #b2c2b9;
    --brand-light-gray: #cbcccc;
    --brand-very-light-green: #dcebe6;
    --brand-dark: #242323;
    
    /* Semantic Color Mapping */
    --primary-color: #242323;
    --secondary-color: #b2c2b9;
    --accent-color: #bdc7b1;
    --text-color: #242323;
    --text-light: #666;
    --bg-light: #fbf6e9;
    --bg-white: #ffffff;
    --bg-sage-green: #bdc7b1;
    --bg-section-alt: #dcebe6;
    --border-color: #cbcccc;
    --spacing: 1rem;
    --max-width: 1200px;
}

body {
    font-family: 'Alegreya Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-cream);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    background-color: var(--brand-cream);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    position: relative;
}

.signature-wrapper {
    position: absolute;
    top: 1rem;
    left: 2rem;
    z-index: 1001;
}

.signature {
    width: 50%;
    height: auto;
    max-width: 200px;
    display: block;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.8rem;
    font-weight: 400;
    font-style: normal;
    color: var(--text-color);
    text-decoration: none;
    font-family: 'Alegreya Sans', sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--brand-muted-green);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

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

/* Hero Section */
.hero {
    background-color: var(--brand-cream);
    color: var(--text-color);
    padding: 0;
    text-align: center;
    position: relative;
}

.hero-image-wrapper {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--brand-cream);
}

.hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    object-fit: contain;
    display: block;
}

.hero .container {
    padding: 4rem 2rem;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--brand-dark);
    color: var(--brand-cream);
}

.btn-primary:hover {
    background-color: var(--brand-muted-green);
    color: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(36, 35, 35, 0.2);
}

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

.btn-secondary:hover {
    background-color: var(--brand-dark);
    color: var(--brand-cream);
}

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

.btn-outline-primary:hover {
    background-color: var(--brand-dark);
    color: var(--brand-cream);
}

.book-button-wrapper {
    text-align: center;
    margin-top: 2rem;
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* About Section */
.about {
    background-color: var(--brand-very-light-green);
}

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

.profile-picture-wrapper {
    margin: 0 auto 2rem;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    border: 4px solid var(--bg-white);
}

.profile-picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Services Section */
.services {
    background-color: var(--brand-cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(36, 35, 35, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--brand-light-gray);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background-color: var(--brand-very-light-green);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(36, 35, 35, 0.1);
    border-left: 4px solid var(--brand-light-green);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-light);
    line-height: 1.8;
}

/* How I Work Section */
.how-i-work {
    background-color: var(--bg-white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--brand-light-green);
    color: var(--brand-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.process-step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.process-step p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    background-color: var(--brand-light-green);
}

.contact-intro {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.contact-content {
    max-width: 600px;
    margin: 3rem auto 0;
}

.contact-form-wrapper h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contact-form {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background-color: var(--brand-dark);
    color: var(--brand-cream);
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--brand-light-green);
}

.footer-contact {
    text-align: right;
}

.footer-contact p {
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--brand-light-green);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    justify-content: flex-end;
}

.social-link {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.social-link:hover {
    color: var(--brand-light-green);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .signature-wrapper {
        top: 0.5rem;
        left: 1rem;
    }

    .signature {
        max-width: 120px;
    }

    .hero-image-wrapper {
        max-height: 300px;
    }

    .hero .container {
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .profile-picture-wrapper {
        width: 200px;
        height: 200px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-contact {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .signature-wrapper {
        top: 0.25rem;
        left: 0.5rem;
    }

    .signature {
        max-width: 100px;
    }

    .hero-image-wrapper {
        max-height: 250px;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .profile-picture-wrapper {
        width: 180px;
        height: 180px;
    }

    .services-grid,
    .testimonials-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
}

