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

:root {
    --emerald-900: #064E3B;
    --emerald-800: #065F46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --cream-50:  #FDF8F0;
    --cream-100: #F5F0E8;
    --cream-200: #E8E0D0;
    --cream-300: #D4CBB8;
    --ink-900:   #1A1A1A;
    --ink-700:   #3A3A3A;
    --ink-500:   #6B6B6B;
    --ink-300:   #9A9A9A;
    --ink-100:   #E5E5E5;

    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;

    --shadow-sm: 0 1px 3px rgba(6, 78, 59, 0.06);
    --shadow-md: 0 4px 20px rgba(6, 78, 59, 0.08);
    --shadow-lg: 0 12px 40px rgba(6, 78, 59, 0.12);
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--ink-700);
    background-color: var(--cream-50);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: var(--emerald-900);
    color: var(--cream-50);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-size: 0.875rem;
}
.skip-link:focus {
    top: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ── Header ──────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(253, 248, 240, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--cream-200);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--emerald-900);
    font-weight: 400;
    letter-spacing: -0.01em;
}

.logo-icon {
    color: var(--emerald-700);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
}

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

.nav-list a {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--ink-700);
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--emerald-700);
    transition: width 0.25s ease;
}

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

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--emerald-700) !important;
    font-weight: 500 !important;
    border: 1px solid var(--emerald-200, #a7f3d0);
    padding: 0.45rem 1rem;
    border-radius: 100px;
    transition: background 0.2s ease, color 0.2s ease !important;
}

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

.nav-cta:hover {
    background: var(--emerald-50, #ecfdf5) !important;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 36px;
    height: 36px;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--ink-700);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger {
    position: relative;
    margin: 0 auto;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before { top: -6px; }
.hamburger::after  { bottom: -6px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}
.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}
.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    bottom: 0;
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
    background: var(--cream-50);
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 5rem 0 4rem;
}

.hero-eyebrow {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--ink-900);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title .accent {
    color: var(--emerald-700);
    font-style: italic;
}

.hero-desc {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--ink-500);
    max-width: 480px;
    margin-bottom: 2rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--ink-500);
    font-weight: 400;
}

.trust-item svg {
    color: var(--emerald-600);
    flex-shrink: 0;
}

/* Hero image */
.hero-image {
    position: relative;
}

.image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-wrapper img {
    width: 100%;
    height: 540px;
    object-fit: cover;
}

.hero-badge {
    position: absolute;
    bottom: -1.25rem;
    left: -1.25rem;
    background: var(--emerald-900);
    color: var(--cream-50);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    box-shadow: var(--shadow-md);
}

.badge-label {
    opacity: 0.7;
}

.badge-value {
    font-weight: 500;
    font-family: var(--font-serif);
    font-size: 1rem;
}

.hero-line {
    height: 1px;
    background: linear-gradient(90deg, var(--cream-200) 0%, transparent 100%);
    max-width: 1200px;
    margin: 0 auto;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 400;
    padding: 0.8125rem 1.75rem;
    border-radius: 100px;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: var(--emerald-800);
    color: var(--cream-50);
    border-color: var(--emerald-800);
}
.btn-primary:hover {
    background: var(--emerald-700);
    border-color: var(--emerald-700);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--ink-700);
    border-color: var(--ink-100);
}
.btn-outline:hover {
    border-color: var(--emerald-700);
    color: var(--emerald-800);
}

.btn-white {
    background: var(--cream-50);
    color: var(--emerald-900);
    border-color: var(--cream-50);
}
.btn-white:hover {
    background: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: transparent;
    color: var(--cream-200);
    border-color: rgba(253, 248, 240, 0.3);
}
.btn-ghost:hover {
    border-color: var(--cream-50);
    color: var(--cream-50);
}

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

/* ── Section shared ───────────────────────────────── */
.section-header {
    max-width: 640px;
}
.section-header--centered {
    text-align: center;
    margin: 0 auto 4rem;
}
.section-header--centered .section-eyebrow {
    text-align: center;
}
.section-header--centered .section-title {
    text-align: center;
}

.section-eyebrow {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--ink-900);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-desc {
    font-size: 1.0625rem;
    color: var(--ink-500);
    line-height: 1.75;
}

/* ── Services ─────────────────────────────────────── */
.services {
    padding: 6rem 0;
    background: var(--cream-50);
}

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

.service-card {
    background: #fff;
    border: 1px solid var(--cream-200);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--emerald-200, #a7f3d0);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--cream-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-700);
    margin-bottom: 1.25rem;
    transition: background 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--emerald-50, #ecfdf5);
}

.service-name {
    font-family: var(--font-serif);
    font-size: 1.1875rem;
    font-weight: 500;
    color: var(--ink-900);
    margin-bottom: 0.625rem;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 0.9375rem;
    color: var(--ink-500);
    line-height: 1.7;
}

/* ── About ────────────────────────────────────────── */
.about {
    padding: 6rem 0;
    background: #fff;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

.about-text {
    font-size: 1rem;
    color: var(--ink-500);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--cream-200);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--emerald-800);
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--ink-500);
    letter-spacing: 0.02em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--cream-200);
}

/* ── Why Us ───────────────────────────────────────── */
.why-us {
    padding: 6rem 0;
    background: var(--cream-50);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.why-item {
    padding: 2rem;
    border: 1px solid var(--cream-200);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.why-item:hover {
    border-color: var(--emerald-200, #a7f3d0);
    box-shadow: var(--shadow-sm);
}

.why-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--cream-300);
    line-height: 1;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.why-item:hover .why-number {
    color: var(--emerald-200, #a7f3d0);
}

.why-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--ink-900);
    margin-bottom: 0.625rem;
}

.why-desc {
    font-size: 0.9375rem;
    color: var(--ink-500);
    line-height: 1.75;
}

/* ── CTA Banner ───────────────────────────────────── */
.cta-banner {
    padding: 5rem 0;
    background: var(--emerald-900);
}

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

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--cream-50);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.cta-desc {
    font-size: 1.0625rem;
    color: rgba(253, 248, 240, 0.7);
    max-width: 480px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

/* ── Contact ──────────────────────────────────────── */
.contact {
    padding: 6rem 0;
    background: #fff;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

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

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

.contact-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-300);
    margin-bottom: 0.25rem;
}

.contact-value {
    display: block;
    font-size: 0.9375rem;
    color: var(--ink-700);
    line-height: 1.6;
}

.contact-link {
    color: var(--emerald-700);
    transition: color 0.2s ease;
}
.contact-link:hover {
    color: var(--emerald-600);
    text-decoration: underline;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--emerald-700);
    border-bottom: 1px solid var(--emerald-200, #a7f3d0);
    padding-bottom: 2px;
    transition: border-color 0.2s ease;
}
.map-link:hover {
    border-color: var(--emerald-600);
}

/* Form */
.contact-form-wrap {
    background: var(--cream-50);
    border: 1px solid var(--cream-200);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--ink-900);
    margin-bottom: 0.5rem;
}

.form-desc {
    font-size: 0.9375rem;
    color: var(--ink-500);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.form-group label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--ink-700);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--ink-900);
    background: #fff;
    border: 1px solid var(--cream-200);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--emerald-600);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

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

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

.form-success {
    text-align: center;
    padding: 2rem;
}

.form-success svg {
    color: var(--emerald-600);
    margin: 0 auto 1rem;
}

.form-success h4 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    color: var(--ink-900);
    margin-bottom: 0.5rem;
}

.form-success p {
    font-size: 0.9375rem;
    color: var(--ink-500);
}

/* ── Footer ───────────────────────────────────────── */
.site-footer {
    background: var(--ink-900);
    color: rgba(253, 248, 240, 0.6);
    padding: 3.5rem 0 2.5rem;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
}

.logo--light {
    color: var(--cream-50);
}

.footer-tagline {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 280px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links a {
    font-size: 0.875rem;
    color: rgba(253, 248, 240, 0.6);
    transition: color 0.2s ease;
}

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

.footer-address p {
    font-size: 0.875rem;
    line-height: 1.7;
}

.footer-copy {
    margin-top: 1.5rem;
    font-size: 0.8125rem;
    opacity: 0.5;
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-inner {
        gap: 2.5rem;
        padding: 4rem 0 3rem;
    }
    .image-wrapper img {
        height: 440px;
    }
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
    .nav-list {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--cream-50);
        border-bottom: 1px solid var(--cream-200);
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        gap: 1rem;
        transform: translateY(-120%);
        opacity: 0;
        transition: transform 0.35s ease, opacity 0.35s ease;
        pointer-events: none;
    }
    .nav-list.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-cta {
        width: 100%;
        justify-content: flex-start;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        padding: 3rem 0 2.5rem;
        gap: 2.5rem;
    }
    .hero-image { order: -1; }
    .image-wrapper img { height: 360px; }
    .hero-badge {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 1rem;
        display: inline-flex;
    }

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

    .about-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about-image img { height: 300px; }

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

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
    .cta-actions {
        justify-content: center;
    }

    .contact-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.125rem;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        justify-content: center;
    }
    .contact-form-wrap {
        padding: 1.5rem;
    }
}
