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

:root {
    --green-deep: #1A3A26;
    --green: #2D5A3D;
    --green-light: #3D7A52;
    --green-pale: #E8F0EB;
    --cream: #F5F2EB;
    --cream-dark: #EDE8DD;
    --white: #FDFCFA;
    --text: #1A1A18;
    --text-muted: #5C5C54;
    --text-light: #8A8A80;
    --line: rgba(45, 90, 61, 0.12);
    --line-strong: rgba(45, 90, 61, 0.25);
    --font-display: 'Crimson Pro', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --radius: 4px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text);
    background: var(--white);
    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;
}

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

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

/* ─── HEADER ─────────────────────────────── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 252, 250, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow var(--transition);
}
.site-header.scrolled {
    box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

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

.logo {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
    text-decoration: none;
}
.logo-mark {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--green);
    letter-spacing: -0.02em;
}
.logo-text {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}
.main-nav a {
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color var(--transition);
    position: relative;
}
.main-nav a:not(.btn):hover {
    color: var(--green);
}
.main-nav a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--green);
    transition: width var(--transition);
}
.main-nav a:not(.btn):hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text);
    padding: 0.25rem;
}

/* ─── BUTTONS ────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1.5px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--dark {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
}
.btn--dark:hover {
    background: var(--green-deep);
    border-color: var(--green-deep);
}

.btn--light {
    background: #fff;
    color: var(--green);
    border-color: #fff;
}
.btn--light:hover {
    background: var(--cream);
}

.btn--ghost-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.btn--ghost-light:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
}

.btn--nav {
    background: var(--green);
    color: #fff;
    border-color: var(--green);
    padding: 0.6rem 1.25rem;
    font-size: 0.75rem;
}
.btn--nav:hover {
    background: var(--green-deep);
    border-color: var(--green-deep);
}

/* ─── SECTIONS ───────────────────────────── */
.section-eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text);
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

/* ─── HERO ───────────────────────────────── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 58, 38, 0.82) 0%,
        rgba(45, 90, 61, 0.65) 50%,
        rgba(26, 58, 38, 0.75) 100%
    );
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-top: 72px;
}
.hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.25rem;
}
.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}
.hero-headline em {
    font-style: italic;
    color: rgba(255,255,255,0.85);
}
.hero-sub {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    max-width: 500px;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}
.hero-scroll svg {
    animation: bob 2s ease-in-out infinite;
}
@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* ─── SERVICES ───────────────────────────── */
.services {
    padding: 8rem 0;
    background: var(--white);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    margin-top: 3rem;
}
.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    transition: all var(--transition);
}
.service-card:hover {
    background: var(--green-pale);
}
.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    margin-bottom: 1.5rem;
    opacity: 0.8;
    transition: opacity var(--transition);
}
.service-card:hover .service-icon {
    opacity: 1;
}
.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}
.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ─── ABOUT ──────────────────────────────── */
.about {
    padding: 8rem 0;
    background: var(--cream);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 7/8.6;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-content .lead {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 1.25rem;
}
.about-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}
.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--line-strong);
}
.stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.stat-number {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--green);
}
.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 0.04em;
}

/* ─── WHY US ─────────────────────────────── */
.why-us {
    padding: 8rem 0;
    background: var(--white);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}
.why-item {
    padding-top: 2rem;
    border-top: 1px solid var(--line-strong);
}
.why-number {
    display: block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--green);
    letter-spacing: 0.06em;
    margin-bottom: 1rem;
    opacity: 0.7;
}
.why-item h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}
.why-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 400px;
}

/* ─── CTA BANNER ─────────────────────────── */
.cta-banner {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}
.cta-bg {
    position: absolute;
    inset: 0;
}
.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}
.cta-content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 2rem;
}
.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── CONTACT ────────────────────────────── */
.contact {
    padding: 8rem 0;
    background: var(--cream);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 2.5rem 0;
}
.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.contact-item svg {
    color: var(--green);
    flex-shrink: 0;
    margin-top: 0.2rem;
}
.contact-item strong {
    display: block;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 0.35rem;
}
.contact-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.contact-item a {
    color: var(--green);
    transition: color var(--transition);
}
.contact-item a:hover {
    color: var(--green-deep);
    text-decoration: underline;
}
.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
}

/* ─── FORM ───────────────────────────────── */
.contact-form-wrap {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
}
.contact-form-wrap h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.form-note {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text);
    background: var(--cream);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    outline: none;
    transition: border-color var(--transition), background var(--transition);
    -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green);
    background: var(--white);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}
.form-group select {
    cursor: pointer;
}

.form-success {
    text-align: center;
    padding: 3rem 1rem;
}
.form-success svg {
    color: var(--green);
    margin: 0 auto 1.5rem;
}
.form-success h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.form-success p {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.contact-form.hidden {
    display: none;
}

/* ─── FOOTER ─────────────────────────────── */
.site-footer {
    background: var(--green-deep);
    color: rgba(255,255,255,0.6);
    padding: 3rem 0;
}
.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}
.footer-brand {
    display: flex;
    align-items: baseline;
    gap: 0.15rem;
}
.footer-brand .logo-mark {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: #fff;
}
.footer-brand .logo-text {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
}
.footer-copy {
    font-size: 0.8rem;
    line-height: 1.8;
}
.footer-copy a {
    color: rgba(255,255,255,0.7);
    transition: color var(--transition);
}
.footer-copy a:hover {
    color: #fff;
}
.footer-email {
    font-size: 0.8rem;
}
.footer-email a {
    color: rgba(255,255,255,0.5);
    transition: color var(--transition);
}
.footer-email a:hover {
    color: rgba(255,255,255,0.9);
}

/* ─── ANIMATIONS ─────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── MOBILE NAV ─────────────────────────── */
@media (max-width: 900px) {
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(253, 252, 250, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        padding: 3rem 2rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 99;
    }
    .main-nav.open {
        transform: translateX(0);
    }
    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .main-nav a {
        font-size: 1rem;
        letter-spacing: 0.08em;
    }
    .btn--nav {
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .about-image {
        aspect-ratio: 4/3;
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-wrap {
        padding: 2rem 1.5rem;
    }
    .hero-actions {
        flex-direction: column;
    }
    .hero-actions .btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2.2rem;
    }
    .section-title {
        font-size: 1.75rem;
    }
}
