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

:root {
    --emerald-deep: #064e3b;
    --emerald: #065f46;
    --emerald-mid: #047857;
    --emerald-light: #10b981;
    --cream: #fef9f0;
    --cream-dark: #f5efe3;
    --cream-light: #fefcf7;
    --warm-gray: #4a4538;
    --warm-gray-light: #7c7568;
    --text-dark: #1a1710;
    --text-mid: #3d3729;
    --text-light: #6b6356;
    --white: #ffffff;
    --gold: #d97706;
    --gold-light: #f59e0b;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 3px rgba(26,23,16,0.08);
    --shadow-md: 0 4px 20px rgba(26,23,16,0.1);
    --shadow-lg: 0 12px 40px rgba(26,23,16,0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

/* ─── Typography ─── */
h1, h2, h3, h4 {
    font-family: 'Lora', Georgia, serif;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

/* ─── Navigation ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(254, 249, 240, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(6, 95, 70, 0.08);
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    transition: var(--transition);
}

.nav.scrolled .nav-inner {
    padding: 14px 0;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.nav-brand-mark {
    font-family: 'Lora', Georgia, serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--cream);
    background: var(--emerald);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav.scrolled .nav-brand-mark {
    color: var(--cream);
    background: var(--emerald-deep);
}

.nav-brand-text {
    font-family: 'Lora', Georgia, serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--cream);
    transition: var(--transition);
}

.nav.scrolled .nav-brand-text {
    color: var(--text-dark);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(254, 249, 240, 0.85);
    transition: var(--transition);
    position: relative;
}

.nav.scrolled .nav-menu a {
    color: var(--text-mid);
}

.nav-menu a:hover {
    color: var(--cream);
}

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

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

.nav.scrolled .nav-menu a::after {
    background: var(--emerald);
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--emerald);
    color: var(--cream) !important;
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: var(--transition);
}

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

.nav-cta:hover {
    background: var(--emerald-deep) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(6, 95, 70, 0.3);
}

.nav.scrolled .nav-cta {
    color: var(--cream) !important;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle svg {
    color: var(--cream);
    transition: var(--transition);
}

.nav.scrolled .nav-toggle svg {
    color: var(--text-dark);
}

/* ─── Hero ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(6, 78, 59, 0.92) 0%,
        rgba(4, 120, 87, 0.85) 40%,
        rgba(16, 185, 129, 0.75) 100%
    );
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, transparent 0%, rgba(6, 30, 22, 0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 120px 24px 80px;
}

.hero-greeting {
    font-family: 'Lora', Georgia, serif;
    font-style: italic;
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(254, 249, 240, 0.75);
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.hero-headline {
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    color: var(--cream);
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.05;
}

.hero-sub {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(254, 249, 240, 0.8);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: rgba(254, 249, 240, 0.5);
    animation: bounce 2s infinite;
    transition: var(--transition);
}

.hero-scroll:hover {
    color: var(--cream);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-8px); }
    60% { transform: translateX(-50%) translateY(-4px); }
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-decoration: none;
}

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

.btn-primary:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--cream);
    border: 1.5px solid rgba(254, 249, 240, 0.4);
}

.btn-secondary:hover {
    background: rgba(254, 249, 240, 0.1);
    border-color: rgba(254, 249, 240, 0.7);
}

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

.btn-dark:hover {
    background: var(--emerald-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(6, 95, 70, 0.3);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ─── Section Shared ─── */
.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--emerald-mid);
    margin-bottom: 12px;
}

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

.section-lead {
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    color: var(--text-light);
    max-width: 560px;
    line-height: 1.7;
}

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

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

.services .section-lead {
    margin: 0 auto 64px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    border: 1px solid rgba(6, 95, 70, 0.06);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--emerald) 0%, var(--emerald-mid) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    margin-bottom: 20px;
}

.service-name {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.service-desc {
    font-size: 0.925rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ─── About ─── */
.about {
    padding: 120px 0;
    background: var(--cream-dark);
}

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

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

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

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

.about-content .section-label {
    margin-bottom: 12px;
}

.about-content .section-title {
    margin-bottom: 24px;
}

.about-body {
    font-size: 1rem;
    color: var(--text-mid);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin: 32px 0 40px;
    padding: 24px 0;
    border-top: 1px solid rgba(6, 95, 70, 0.1);
    border-bottom: 1px solid rgba(6, 95, 70, 0.1);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--emerald);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ─── Why Us ─── */
.why {
    padding: 120px 0;
    background: var(--cream);
}

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

.why-content .section-label {
    margin-bottom: 12px;
}

.why-content .section-title {
    margin-bottom: 16px;
}

.why-content .section-lead {
    margin-bottom: 40px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.why-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
    margin-top: 2px;
}

.why-item-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.why-item-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.why-image-main {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ─── Testimonial Strip ─── */
.testimonial-strip {
    padding: 80px 0;
    background: var(--emerald-deep);
}

.testimonial {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote {
    color: rgba(254, 249, 240, 0.2);
    margin-bottom: 24px;
}

.testimonial-text {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-style: italic;
    color: var(--cream);
    line-height: 1.6;
    margin-bottom: 28px;
}

.testimonial-footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
}

.testimonial-author {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--cream);
}

.testimonial-location {
    font-size: 0.85rem;
    color: rgba(254, 249, 240, 0.6);
}

/* ─── Contact ─── */
.contact {
    padding: 120px 0;
    background: var(--cream-dark);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info .section-title {
    margin-bottom: 16px;
}

.contact-info .section-lead {
    margin-bottom: 40px;
}

.contact-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 36px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail dt {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background: var(--emerald);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cream);
}

.contact-detail dd a {
    font-size: 1rem;
    color: var(--text-mid);
    transition: var(--transition);
    line-height: 1.5;
}

.contact-detail dd a:hover {
    color: var(--emerald);
}

.contact-hours {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 24px 28px;
}

.contact-hours strong {
    font-family: 'Lora', Georgia, serif;
    font-size: 1rem;
    color: var(--text-dark);
    display: block;
    margin-bottom: 10px;
}

.contact-hours p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

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

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

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid rgba(6, 95, 70, 0.15);
    border-radius: var(--radius-sm);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream-light);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(6, 95, 70, 0.1);
    background: var(--white);
}

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

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

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

.form-success svg {
    color: var(--emerald);
    margin-bottom: 16px;
}

.form-success h4 {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-success p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ─── Footer ─── */
.footer {
    background: var(--text-dark);
    padding: 60px 0 32px;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 32px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-mark {
    font-family: 'Lora', Georgia, serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--cream);
    background: var(--emerald);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.footer-name {
    font-family: 'Lora', Georgia, serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--cream);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(254, 249, 240, 0.5);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(254, 249, 240, 0.65);
    transition: var(--transition);
}

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

.footer-copy {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(254, 249, 240, 0.08);
    width: 100%;
}

.footer-copy p {
    font-size: 0.8rem;
    color: rgba(254, 249, 240, 0.35);
    line-height: 1.7;
}

/* ─── Scroll Animations ─── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-layout,
    .why-inner,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-image,
    .why-image-main {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--emerald-deep);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        padding: 40px;
        transition: var(--transition);
        box-shadow: -8px 0 30px rgba(0,0,0,0.2);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu a {
        color: rgba(254, 249, 240, 0.85) !important;
        font-size: 1.1rem;
    }

    .nav-menu a:hover {
        color: var(--cream) !important;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-cta {
        justify-content: center;
        width: 100%;
    }

    .nav-toggle {
        display: block;
    }

    .hero-headline {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

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

    .about-stats {
        gap: 24px;
    }

    .contact-form-wrap {
        padding: 28px;
    }

    .footer-inner {
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .about-stats {
        flex-direction: column;
        gap: 16px;
    }

    .nav-menu {
        width: 100%;
        right: -100%;
    }
}

/* Mobile menu overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}
