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

:root {
    --emerald: #047857;
    --emerald-dark: #065f46;
    --emerald-light: #064e3b;
    --cream: #faf8f5;
    --cream-dark: #f3efe9;
    --warm-gray: #6b6560;
    --text: #1a1a18;
    --text-light: #4a4a46;
    --white: #ffffff;
    --border: #e8e4de;
    --shadow-sm: 0 1px 3px rgba(26,26,24,.06), 0 1px 2px rgba(26,26,24,.04);
    --shadow-md: 0 4px 20px rgba(26,26,24,.08), 0 2px 8px rgba(26,26,24,.04);
    --shadow-lg: 0 12px 40px rgba(26,26,24,.1), 0 4px 12px rgba(26,26,24,.05);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: .3s cubic-bezier(.4,0,.2,1);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { font-weight: 400; line-height: 1.2; letter-spacing: -.02em; }

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

.skip-link {
    position: absolute; top: -100%; left: 16px;
    background: var(--emerald); color: var(--white);
    padding: 8px 16px; border-radius: var(--radius);
    z-index: 9999; font-size: .875rem;
}
.skip-link:focus { top: 16px; }

/* ── Typography ───────────────────────────────────── */
.serif {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
}

.thin { font-weight: 300; }

.section-eyebrow {
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 12px;
}

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

.section-desc {
    font-size: 1.0625rem;
    color: var(--text-light);
    max-width: 520px;
    line-height: 1.8;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-family: var(--font-sans);
    font-size: .9375rem;
    font-weight: 500;
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

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

.btn-outline {
    background: transparent;
    color: var(--text);
    border-color: var(--border);
}
.btn-outline:hover {
    border-color: var(--emerald);
    color: var(--emerald);
}

.btn-sm { padding: 10px 20px; font-size: .8125rem; }

.btn-cream {
    background: var(--cream);
    color: var(--emerald-dark);
    border-color: var(--cream);
    font-weight: 500;
}
.btn-cream:hover {
    background: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: transparent;
    color: var(--text-light);
    border-color: var(--border);
}
.btn-ghost:hover { color: var(--emerald); border-color: var(--emerald); }

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

/* ── Header ───────────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250,248,245,.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

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

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

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text);
}

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

.logo-dot { color: var(--emerald); font-weight: 600; }

/* ── Nav ──────────────────────────────────────────── */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-menu a {
    font-size: .875rem;
    font-weight: 400;
    color: var(--text-light);
    transition: color var(--transition);
    position: relative;
}

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

.nav-menu a:hover { color: var(--emerald); }
.nav-menu a:hover::after { width: 100%; }

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 32px;
    position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--text);
    transition: var(--transition);
    position: absolute;
    left: 6px;
}

.hamburger { top: 14px; }
.hamburger::before { content: ''; top: -6px; }
.hamburger::after { content: ''; top: 6px; }

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

/* ── Hero ─────────────────────────────────────────── */
.hero {
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(4,120,87,.06) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-eyebrow {
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 16px;
}

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

.hero-title .thin { font-weight: 300; display: block; font-size: .65em; letter-spacing: .04em; text-transform: uppercase; margin-top: 8px; }

.hero-desc {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 460px;
}

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

.hero-visual {
    position: relative;
    padding-bottom: 24px;
}

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

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

/* Stat Cards */
.stat-card {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius);
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    animation: float 4s ease-in-out infinite;
}

.stat-card--1 {
    bottom: 60px;
    left: -30px;
    animation-delay: 0s;
}

.stat-card--2 {
    top: 40px;
    right: -20px;
    animation-delay: 1.3s;
}

.stat-card--3 {
    bottom: -10px;
    right: 20px;
    animation-delay: 2.6s;
}

.stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--emerald);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: .75rem;
    color: var(--text-light);
    line-height: 1.4;
}

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

.hero-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

/* ── Services ─────────────────────────────────────── */
.services {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

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

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

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
}

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

.service-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(4,120,87,.08);
    color: var(--emerald);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--emerald);
    color: var(--white);
}

.service-title {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text);
}

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

/* ── About ────────────────────────────────────────── */
.about {
    padding: 100px 0;
    border-top: 1px solid var(--border);
    background: var(--white);
}

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

.about-image {
    position: relative;
}

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

.about-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--emerald);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: .3;
}

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

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

.about-features {
    margin-top: 32px;
    display: grid;
    gap: 14px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .9375rem;
    color: var(--text);
}

.feature-check {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(4,120,87,.1);
    color: var(--emerald);
}

/* ── Why Us ───────────────────────────────────────── */
.why-us {
    padding: 100px 0;
    border-top: 1px solid var(--border);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    padding: 36px 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--emerald);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

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

.why-card:hover {
    border-color: var(--emerald);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-number {
    font-size: .6875rem;
    font-weight: 500;
    letter-spacing: .1em;
    color: var(--emerald);
    opacity: .5;
    margin-bottom: 16px;
    display: block;
}

.why-title {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.why-text {
    font-size: .9375rem;
    color: var(--text-light);
    line-height: 1.75;
}

/* ── Testimonials ─────────────────────────────────── */
.testimonials {
    padding: 100px 0;
    border-top: 1px solid var(--border);
    background: var(--white);
}

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

.testimonial-card {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1;
    color: var(--emerald);
    opacity: .2;
    position: absolute;
    top: 16px;
    left: 24px;
}

.testimonial-text {
    font-size: .9375rem;
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.author-name {
    font-size: .875rem;
    font-weight: 500;
    color: var(--text);
}

.author-location {
    font-size: .8125rem;
    color: var(--text-light);
}

/* ── CTA Banner ───────────────────────────────────── */
.cta-banner {
    padding: 80px 0;
    border-top: 1px solid var(--border);
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: var(--emerald);
    border-radius: var(--radius-lg);
    padding: 56px 64px;
}

.cta-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: var(--white);
    margin-bottom: 8px;
}

.cta-desc {
    font-size: 1rem;
    color: rgba(255,255,255,.7);
}

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

/* ── Contact ──────────────────────────────────────── */
.contact {
    padding: 100px 0;
    border-top: 1px solid var(--border);
    background: var(--white);
}

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

.contact-details {
    display: grid;
    gap: 20px;
    margin-top: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: var(--emerald);
}

.contact-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(4,120,87,.08);
    color: var(--emerald);
}

.contact-label {
    display: block;
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 2px;
}

.contact-value {
    font-size: .9375rem;
    color: var(--text);
    line-height: 1.6;
}

.contact-hours {
    margin-top: 32px;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}

.hours-title {
    font-size: .875rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--text);
}

.hours-list { display: grid; gap: 8px; }

.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: .875rem;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}

.hours-list li:last-child { border-bottom: none; padding-bottom: 0; }

.day { color: var(--text-light); }
.time { font-weight: 500; color: var(--text); }

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

.form-title {
    font-size: 1.5rem;
    margin-bottom: 28px;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: .9375rem;
    color: var(--text);
    background: var(--white);
    transition: var(--transition);
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--emerald);
    box-shadow: 0 0 0 3px rgba(4,120,87,.1);
}

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

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

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding: 16px 20px;
    background: rgba(4,120,87,.08);
    border: 1px solid rgba(4,120,87,.2);
    border-radius: var(--radius);
    color: var(--emerald-dark);
    font-size: .9375rem;
}

/* ── Footer ───────────────────────────────────────── */
.footer {
    padding: 64px 0 0;
    border-top: 1px solid var(--border);
    background: var(--text);
    color: rgba(255,255,255,.6);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-tagline { font-size: .9375rem; line-height: 1.7; max-width: 280px; }

.footer-links h4,
.footer-contact h4 {
    font-size: .75rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: rgba(255,255,255,.4);
    margin-bottom: 16px;
}

.footer-links ul { display: grid; gap: 10px; }

.footer-links a {
    font-size: .9375rem;
    transition: color var(--transition);
}

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

.footer-contact p {
    font-size: .9375rem;
    line-height: 1.8;
    margin-bottom: 4px;
}

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

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .8125rem;
    color: rgba(255,255,255,.35);
}

/* ── Reveal Animation ─────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Mobile Nav Overlay ───────────────────────────── */
@media (max-width: 900px) {
    .nav-toggle { display: block; z-index: 1001; }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--cream);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .nav-menu.open {
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu a {
        font-size: 1.25rem;
        color: var(--text);
    }

    .nav-menu .btn-sm {
        font-size: .9375rem;
        padding: 12px 28px;
    }
}

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 900px) {
    .hero-layout { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { order: -1; max-width: 480px; margin: 0 auto; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .about-layout { grid-template-columns: 1fr; gap: 40px; }
    .about-image { max-width: 480px; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .contact-layout { grid-template-columns: 1fr; }
    .cta-inner { flex-direction: column; text-align: center; padding: 40px 32px; }
    .footer-top { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 600px) {
    .hero { padding: 110px 0 60px; }
    .hero-title { font-size: 2.25rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { justify-content: center; }
    .stat-card--1 { left: 0; bottom: 40px; }
    .stat-card--2 { right: 0; top: 20px; }
    .stat-card--3 { right: 0; bottom: 0; }
    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 24px; }
    .cta-actions { flex-direction: column; width: 100%; }
    .cta-actions .btn { justify-content: center; }
}
