:root {
    --green: #5B9B3A;
    --green-dark: #3D7A24;
    --green-light: #8BC06A;
    --teal: #1DA0A0;
    --teal-dark: #147878;
    --yellow: #F2D024;
    --yellow-light: #FFF3B0;
    --orange: #E8A850;
    --dark: #1C2B1A;
    --dark-soft: #2E3D2C;
    --cream: #FAFAF5;
    --cream-warm: #F5F0E8;
    --text: #333;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 16px;
    --radius-sm: 10px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Nunito Sans', sans-serif;
    color: var(--text);
    background: var(--cream);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ========== NAVIGATION ========== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(91, 155, 58, 0.1);
    transition: box-shadow 0.3s ease;
}

nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--dark);
}

.nav-logo img {
    height: 48px;
    width: auto;
}

.nav-logo-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    position: relative;
    transition: color 0.3s;
}

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

.nav-links a:hover { color: var(--green-dark); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: var(--green) !important;
    color: var(--white) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    transition: background 0.3s, transform 0.2s !important;
}

.nav-cta:hover {
    background: var(--green-dark) !important;
    transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

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

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: var(--dark);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, var(--cream) 0%, var(--cream-warm) 40%, rgba(91,155,58,0.06) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91,155,58,0.08) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -15%;
    left: -5%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(29,160,160,0.06) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
}

.hero-content h1 span {
    color: var(--green);
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--teal);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 500px;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--green);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(91,155,58,0.3);
}

.btn-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91,155,58,0.4);
}

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

.btn-outline:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-2px);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.hero-image-wrapper .shape-1 {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--yellow);
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.hero-image-wrapper .shape-2 {
    position: absolute;
    bottom: 30px;
    left: -30px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--teal);
    opacity: 0.2;
    animation: float 7s ease-in-out infinite reverse;
}

.hero-image {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
    background: linear-gradient(135deg, var(--green-light), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero-image-placeholder {
    color: white;
    text-align: center;
    padding: 2rem;
    font-size: 1rem;
    opacity: 0.8;
}

/* ========== SECTION COMMON ========== */
section {
    padding: 6rem 2rem;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    font-weight: 300;
    line-height: 1.8;
}

/* ========== ABOUT ========== */
.about {
    background: var(--white);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green-light), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3rem;
}

.about-image {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(91,155,58,0.1), rgba(29,160,160,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--green-light);
    border-radius: var(--radius);
    z-index: -1;
    opacity: 0.4;
}

.about-image-placeholder {
    color: var(--text-light);
    font-size: 0.95rem;
    padding: 2rem;
    text-align: center;
}

.about-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 300;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--cream);
    border-radius: var(--radius-sm);
}

.highlight-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.highlight-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-soft);
}

/* ========== SERVICES ========== */
.services {
    background: var(--cream);
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.services-header .section-desc {
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(91,155,58,0.08);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--green), var(--teal));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-card:nth-child(1) .service-icon { background: rgba(91,155,58,0.12); }
.service-card:nth-child(2) .service-icon { background: rgba(29,160,160,0.12); }
.service-card:nth-child(3) .service-icon { background: rgba(242,208,36,0.2); }
.service-card:nth-child(4) .service-icon { background: rgba(232,168,80,0.15); }
.service-card:nth-child(5) .service-icon { background: rgba(91,155,58,0.12); }
.service-card:nth-child(6) .service-icon { background: rgba(29,160,160,0.12); }

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
}

.service-price {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0,0,0,0.06);
    font-size: 0.85rem;
    color: var(--green-dark);
    font-weight: 700;
}

.service-price .note {
    font-weight: 300;
    color: var(--text-light);
    font-size: 0.8rem;
}

/* ========== TEAM ========== */
.team {
    background: var(--white);
    position: relative;
}

.team-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.team-header .section-desc {
    margin: 0 auto;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card {
    text-align: center;
    position: relative;
}

.team-photo {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(91,155,58,0.08), rgba(29,160,160,0.08));
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease;
}

.team-card:hover .team-photo {
    transform: scale(1.02);
}

.team-photo-placeholder {
    color: var(--text-light);
    font-size: 0.85rem;
    padding: 1.5rem;
}

.team-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.team-role {
    color: var(--green);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 0.75rem;
}

.team-card p {
    color: var(--text-light);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.6;
}

/* ========== CONTACT ========== */
.contact {
    background: var(--dark);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green), transparent);
}

.contact::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(91,155,58,0.08) 0%, transparent 70%);
}

.contact .section-label { color: var(--green-light); }
.contact .section-title { color: var(--white); }
.contact .section-desc { color: rgba(255,255,255,0.6); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(91,155,58,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-light);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-item-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-item-value {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    line-height: 1.5;
}

.contact-item-value a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item-value a:hover { color: var(--green-light); }

.contact-map {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ========== FOOTER ========== */
footer {
    background: var(--dark-soft);
    padding: 2rem;
    text-align: center;
}

footer p {
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* ========== ANIMATIONS ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 3rem; }
    .section-title { font-size: 2.3rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(250,250,245,0.98);
        backdrop-filter: blur(20px);
        padding: 1.5rem 2rem;
        gap: 1rem;
        border-bottom: 1px solid rgba(91,155,58,0.1);
        box-shadow: var(--shadow-md);
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 7rem 1.5rem 3rem;
        gap: 2rem;
    }

    .hero-content h1 { font-size: 2.6rem; }
    .hero-visual { order: -1; }
    .hero-image-wrapper { max-width: 300px; }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

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

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    section { padding: 4rem 1.5rem; }
}
