* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f3ed;
}

/* Navigation */
nav {
    background-color: #f5f3ed;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 2rem;
    transition: box-shadow 0.3s;
}

nav.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

nav .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 3.5rem;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 0.65rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: opacity 0.3s;
}

nav a:hover {
    opacity: 0.6;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: #333;
    transition: all 0.3s;
}

.nav-links {
    display: flex;
    gap: 3.5rem;
}

.nav-links.active {
    display: flex;
}

/* Hero Section */
.hero {
    background-color: #f5f3ed;
    padding: 8rem 2rem 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 500px;
    position: relative;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.hero-illustration {
    position: absolute;
    left: 2rem;
    top: 2rem;
    width: 60px;
    height: 60px;
    opacity: 0.4;
}

.hero h1 {
    font-family: 'Caveat', cursive;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: #333;
}

.hero p {
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.hero-image-wrapper {
    width: 100%;
    height: 500px;
    background-color: #d4d4d4;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    background: #6b8e7f;
    color: white;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: opacity 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    opacity: 0.8;
}

.cta-button i {
    margin-right: 0.5rem;
}

.contact-info i {
    margin-right: 0.3rem;
    color: #25D366;
}

/* Section Styles */
section {
    padding: 4rem 2rem;
}

.section-bg-tan {
    background-color: #c9b5a0;
}

.section-bg-sage {
    background-color: #849c84;
}

.section-bg-grass {
    background-color: #a8b5a3;
}

.section-bg-cream {
    background-color: #f5f3ed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-family: 'Caveat', cursive;
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: #333;
}

/* About Section */
.about-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.about-image {
    flex-shrink: 0;
}

.profile-img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: #d4d4d4;
    overflow: hidden;
}

.profile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
}

/* Services Section */
.service-with-image {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.service-image {
    width: 350px;
    height: 200px;
    border-radius: 150px;
    background-color: #d4d4d4;
    flex-shrink: 0;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-content {
    flex: 1;
}

.services-content .section-title {
    margin-bottom: 2rem;
}

.service-item {
    margin-bottom: 2rem;
}

.service-item h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
    color: #333;
}

.service-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
}

.service-details {
    margin-top: 1.5rem;
}

.service-details p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
}

/* Approach Section */
.approach-content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.approach-text {
    flex: 1;
}

.approach-text p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
}

.approach-text ul {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.approach-text li {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 300;
}

.approach-text li strong {
    font-weight: 500;
}

.approach-image {
    width: 350px;
    height: 350px;
    border-radius: 100px;
    background-color: #d4d4d4;
    flex-shrink: 0;
    overflow: hidden;
}

.approach-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Section */
.contact-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.contact-content {
    flex: 1;
}

.contact-image {
    width: 250px;
    height: 250px;
    flex-shrink: 0;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-info p {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    line-height: 1.7;
}

.contact-info a {
    color: #333;
    text-decoration: none;
}

.contact-cta {
    margin: 2rem 0;
}

.contact-message {
    margin-top: 2rem;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 300;
}

.botanical-illustration {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    width: 80px;
    height: 80px;
    opacity: 0.3;
}

/* Responsive */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
        position: fixed;
        right: 2rem;
        top: 1.5rem;
        z-index: 1001;
        background-color: #f5f3ed;
        padding: 0.5rem;
        border-radius: 4px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    nav {
        padding: 0;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background-color: transparent;
        box-shadow: none;
    }

    nav .container {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #f5f3ed;
        padding: 1.5rem;
        gap: 1rem;
        margin-top: 3rem;
        border-radius: 8px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .nav-links.active {
        display: flex;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 6rem 1rem 3rem 1rem;
        align-items: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .hero-image-wrapper {
        clip-path: none;
        height: 400px;
    }

    .about-content,
    .service-with-image,
    .approach-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-image {
        text-align: center;
    }

    .about-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .about-text h3 {
        text-align: center;
    }

    .about-text p {
        text-align: center;
    }

    .service-image {
        width: 100%;
        max-width: 300px;
        order: -1;
    }

    .services-content {
        width: 100%;
        text-align: center;
    }

    .services-content .section-title {
        text-align: center;
    }

    .service-item {
        text-align: center;
    }

    .service-item h3 {
        text-align: center;
    }

    .service-item p {
        text-align: center;
        max-width: 100%;
    }

    .service-details {
        text-align: center;
    }

    .service-details p {
        text-align: center;
    }

    .approach-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .approach-text p {
        text-align: center;
    }

    .approach-text ul {
        text-align: center;
        list-style-position: inside;
    }

    .approach-image {
        order: -1;
    }

    .contact-layout {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-content {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .contact-image {
        width: 200px;
        height: 200px;
        order: 1;
        margin-top: 2rem;
    }

    .contact-info {
        text-align: center;
    }

    .contact-info p {
        text-align: center;
    }

    .contact-message {
        text-align: center;
    }

    .contact-message p {
        text-align: center;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 1rem;
    }

    nav a {
        font-size: 0.75rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    section {
        padding: 3rem 1rem;
    }

    .profile-img,
    .service-image,
    .approach-image {
        width: 100%;
        max-width: 300px;
    }
}