/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --emerald: #0D7C66;
    --emerald-dark: #095c4b;
    --emerald-light: #14a388;
    --cream: #FAF9F6;
    --cream-dark: #F0EDE8;
    --text-dark: #1A2B2A;
    --text-medium: #4A5D5B;
    --text-light: #7A8D8B;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(13, 124, 102, 0.08);
    --shadow-md: 0 8px 30px rgba(13, 124, 102, 0.12);
    --shadow-lg: 0 20px 60px rgba(13, 124, 102, 0.15);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    line-height: 1.2;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

/* Typography */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-dark);
    margin-bottom: 24px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
    max-width: 600px;
    margin: 0 auto;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background-color: var(--emerald-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-outline-light {
    background-color: transparent;
    color: var(--cream);
    border: 1.5px solid var(--cream);
}

.btn-outline-light:hover {
    background-color: var(--cream);
    color: var(--emerald);
}

.btn-full {
    width: 100%;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(13, 124, 102, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.logo-accent {
    color: var(--emerald);
    font-size: 2rem;
    line-height: 1;
}

.logo-bold {
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-medium);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: var(--emerald);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--emerald);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background-color: var(--cream);
    padding: 32px 24px;
    transform: translateY(-100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 999;
    border-bottom: 1px solid rgba(13, 124, 102, 0.1);
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
}

.mobile-link {
    display: block;
    padding: 16px 0;
    font-size: 1.1rem;
    color: var(--text-dark);
    border-bottom: 1px solid rgba(13, 124, 102, 0.1);
}

.mobile-link--highlight {
    color: var(--emerald);
    font-weight: 600;
    border-bottom: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 80px;
    background: linear-gradient(135deg, var(--cream) 0%, var(--cream-dark) 100%);
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 24px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--emerald);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-top: 8px;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
}

.hero-image-main {
    width: 80%;
    height: 80%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.hero-image-float {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 4px solid var(--cream);
}

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

.float-card {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background-color: var(--white);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.float-card-title {
    display: block;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-dark);
}

.float-card-text {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Decorative Elements */
.deco-circle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.deco-circle-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(13, 124, 102, 0.08) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.deco-circle-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(13, 124, 102, 0.06) 0%, transparent 70%);
    bottom: -50px;
    left: -50px;
}

.deco-line {
    position: absolute;
    width: 1px;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--emerald), transparent);
    right: 15%;
    top: 0;
    opacity: 0.3;
}

/* About Section */
.about {
    padding: 120px 0;
    background-color: var(--white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-col {
    position: relative;
}

.about-img {
    width: 85%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background-color: var(--emerald);
    opacity: 0.1;
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about-content-col {
    padding-left: 20px;
}

.about-text {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.about-values {
    list-style: none;
    margin-top: 32px;
}

.about-values li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.value-icon {
    width: 24px;
    height: 24px;
    background-color: var(--emerald);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    flex-shrink: 0;
}

/* Services Section */
.services {
    padding: 120px 0;
    background-color: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.service-card {
    background-color: var(--white);
    padding: 48px 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.service-icon {
    width: 72px;
    height: 72px;
    background-color: rgba(13, 124, 102, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald);
    margin-bottom: 24px;
}

.service-title {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-text {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--emerald);
}

.service-link:hover {
    color: var(--emerald-dark);
}

/* Process Section */
.process {
    padding: 120px 0;
    background-color: var(--white);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    padding: 32px 24px;
    position: relative;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 48px;
    right: -12px;
    width: 24px;
    height: 2px;
    background-color: var(--emerald);
    opacity: 0.3;
}

.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--emerald);
    opacity: 0.2;
    margin-bottom: 16px;
}

.step-title {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-text {
    font-size: 0.9rem;
    color: var(--text-medium);
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-dark) 100%);
}

.testimonials .section-eyebrow {
    color: rgba(255, 255, 255, 0.7);
}

.testimonials .section-title {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 32px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4rem;
    color: var(--white);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 24px;
}

.testimonial-author {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.05em;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background-color: var(--cream-dark);
}

.cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--text-medium);
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-shrink: 0;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background-color: var(--white);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-text {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
}

.contact-value {
    font-size: 1.05rem;
    color: var(--text-dark);
}

.contact-value a {
    color: var(--emerald);
}

.contact-value a:hover {
    color: var(--emerald-dark);
}

.contact-form-wrapper {
    background-color: var(--cream);
    padding: 48px;
    border-radius: var(--radius-lg);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid rgba(13, 124, 102, 0.2);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--text-dark);
    background-color: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(13, 124, 102, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

.form-success {
    text-align: center;
    padding: 40px;
}

.form-success p {
    font-size: 1.1rem;
    color: var(--emerald);
    font-weight: 500;
}

/* Footer */
.footer {
    background-color: var(--text-dark);
    color: var(--cream);
    padding: 80px 0 40px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand .logo {
    color: var(--cream);
    margin-bottom: 16px;
    display: inline-block;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(250, 249, 246, 0.6);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(250, 249, 246, 0.7);
}

.footer-contact a {
    color: rgba(250, 249, 246, 0.7);
}

.footer-contact a:hover {
    color: var(--cream);
}

.footer-bottom {
    border-top: 1px solid rgba(250, 249, 246, 0.1);
    padding-top: 32px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(250, 249, 246, 0.5);
    text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-image-wrapper {
        height: 400px;
        order: -1;
    }
    
    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content-col {
        padding-left: 0;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step:not(:last-child)::after {
        display: none;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero-image-wrapper {
        height: 300px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .cta-container {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-image-wrapper {
        height: 250px;
    }
    
    .hero-stats {
        flex-wrap: wrap;
    }
}
