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

:root {
    --emerald-900: #064E3B;
    --emerald-800: #065F46;
    --emerald-700: #047857;
    --emerald-600: #059669;
    --cream-50: #FAF9F6;
    --cream-100: #F5F4F0;
    --cream-200: #EDECE6;
    --cream-300: #E5E3DB;
    --ink-900: #1A1A18;
    --ink-700: #3A3A36;
    --ink-500: #6B6B64;
    --ink-400: #8A8A82;
    --ink-300: #B0B0A8;
    --white: #FFFFFF;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', -apple-system, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--ink-900);
    background-color: var(--cream-50);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

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

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

/* ─── NAVIGATION ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.5s var(--ease-smooth), box-shadow 0.5s var(--ease-smooth);
}

.nav.scrolled {
    background-color: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 var(--cream-300);
}

.nav.scrolled .nav-logo-text,
.nav.scrolled .nav-link {
    color: var(--ink-900);
}

.nav.scrolled .nav-link--cta {
    background-color: var(--emerald-800);
    color: var(--white) !important;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    height: 72px;
}

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

.nav-logo-mark {
    font-family: var(--font-serif);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 4px 7px;
    transition: border-color 0.3s, color 0.3s;
}

.nav.scrolled .nav-logo-mark {
    border-color: var(--emerald-800);
    color: var(--emerald-800);
}

.nav-logo-text {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    transition: color 0.3s;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin-left: auto;
}

.nav-link {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s var(--ease-out);
}

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

.nav-link--cta {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 18px;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.nav-link--cta::after {
    display: none;
}

.nav-link--cta:hover {
    background-color: var(--emerald-700);
    border-color: var(--emerald-700);
    color: var(--white) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
    z-index: 1001;
    padding: 4px;
}

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 1px;
    background-color: var(--white);
    transition: transform 0.3s var(--ease-out), opacity 0.3s;
}

.nav.scrolled .nav-toggle-line {
    background-color: var(--ink-900);
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active .nav-toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* ─── HERO ─── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

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

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(6, 78, 59, 0.82) 0%,
        rgba(6, 78, 59, 0.65) 50%,
        rgba(6, 78, 59, 0.45) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    padding-top: 72px;
}

.hero-eyebrow {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.hero-headline {
    font-family: var(--font-serif);
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 400;
    line-height: 0.95;
    color: var(--white);
    letter-spacing: -0.02em;
    margin-bottom: 32px;
}

.hero-headline br {
    display: none;
}

.hero-sub {
    max-width: 480px;
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 48px;
}

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

/* ─── BUTTONS ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 16px 32px;
    transition: all 0.3s var(--ease-out);
    position: relative;
}

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

.btn--primary:hover {
    background-color: var(--cream-100);
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn--ghost:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.btn--ghost-light {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn--ghost-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

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

.btn--dark:hover {
    background-color: var(--emerald-800);
    transform: translateY(-2px);
}

.btn--full {
    width: 100%;
}

/* ─── HERO SCROLL ─── */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-scroll svg {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.5; }
    50% { transform: translateY(6px); opacity: 1; }
}

/* ─── STRIP ─── */
.strip {
    background-color: var(--cream-100);
    border-top: 1px solid var(--cream-300);
    border-bottom: 1px solid var(--cream-300);
}

.strip-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
}

.strip-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 28px 0;
}

.strip-num {
    font-family: var(--font-serif);
    font-size: 14px;
    color: var(--emerald-700);
}

.strip-label {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-700);
}

.strip-divider {
    width: 1px;
    height: 40px;
    background-color: var(--cream-300);
    flex-shrink: 0;
}

/* ─── SECTION HEADERS ─── */
.section-eyebrow {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--emerald-700);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--ink-900);
    letter-spacing: -0.01em;
}

.section-header--centered {
    text-align: center;
}

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

.section-header {
    margin-bottom: 72px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background-color: var(--cream-300);
    border: 1px solid var(--cream-300);
}

.service-card {
    background-color: var(--cream-50);
    padding: 48px 36px;
    transition: background-color 0.4s var(--ease-out);
    position: relative;
}

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

.service-card:hover .service-card-line {
    width: 48px;
}

.service-card-line {
    width: 0;
    height: 1px;
    background-color: var(--emerald-700);
    margin-bottom: 28px;
    transition: width 0.5s var(--ease-out);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--emerald-700);
}

.service-title {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    font-weight: 400;
    color: var(--ink-900);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.service-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--ink-500);
    font-weight: 300;
}

/* ─── ABOUT ─── */
.about {
    padding: 120px 0;
    background-color: var(--cream-100);
}

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

.about-image {
    position: relative;
}

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

.about-image-accent {
    position: absolute;
    bottom: -24px;
    right: -24px;
    width: 200px;
    height: 200px;
    border: 1px solid var(--emerald-700);
    z-index: -1;
}

.about-content {
    padding: 24px 0;
}

.about-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--ink-900);
    letter-spacing: -0.01em;
    margin-bottom: 32px;
}

.about-text {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--ink-500);
    font-weight: 300;
    margin-bottom: 20px;
}

.about-values {
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-value {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
    align-items: start;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--cream-300);
}

.about-value:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.about-value-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--emerald-700);
    padding-top: 4px;
}

.about-value-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--ink-700);
    font-weight: 300;
}

/* ─── PROCESS ─── */
.process {
    padding: 120px 0;
    background-color: var(--cream-50);
}

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

.process-step {
    padding: 0 24px;
    position: relative;
}

.process-step-num {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 400;
    color: var(--cream-300);
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.process-step:hover .process-step-num {
    color: var(--emerald-700);
}

.process-step-title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--ink-900);
    margin-bottom: 12px;
}

.process-step-desc {
    font-size: 0.88rem;
    line-height: 1.8;
    color: var(--ink-500);
    font-weight: 300;
}

.process-connector {
    display: none;
}

/* ─── CTA BANNER ─── */
.cta-banner {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

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

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 78, 59, 0.9) 0%, rgba(6, 78, 59, 0.75) 100%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta-eyebrow {
    color: rgba(255, 255, 255, 0.6);
}

.cta-title {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--white);
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

.cta-title br {
    display: none;
}

.cta-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
    margin-bottom: 40px;
}

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

/* ─── CONTACT ─── */
.contact {
    padding: 120px 0;
    background-color: var(--cream-100);
}

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

.contact-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--ink-900);
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

.contact-title br {
    display: none;
}

.contact-text {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--ink-500);
    font-weight: 300;
    margin-bottom: 40px;
}

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

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

.contact-detail-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--cream-300);
    color: var(--emerald-700);
    flex-shrink: 0;
}

.contact-detail-label {
    display: block;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-400);
    margin-bottom: 4px;
}

.contact-detail-value {
    font-size: 0.9rem;
    color: var(--ink-700);
    font-weight: 300;
    line-height: 1.6;
}

.contact-detail-value a {
    transition: color 0.3s;
}

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

/* ─── FORM ─── */
.contact-form-wrap {
    background-color: var(--white);
    padding: 48px;
    border: 1px solid var(--cream-300);
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink-500);
}

.form-input {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--ink-900);
    background-color: var(--cream-50);
    border: 1px solid var(--cream-300);
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.3s, background-color 0.3s;
    -webkit-appearance: none;
    border-radius: 0;
}

.form-input:focus {
    border-color: var(--emerald-700);
    background-color: var(--white);
}

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

.form-select {
    cursor: pointer;
}

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

.form-note {
    font-size: 0.8rem;
    color: var(--ink-400);
    font-weight: 300;
    text-align: center;
}

.form-success {
    text-align: center;
    padding: 48px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.form-success-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--emerald-700);
    color: var(--emerald-700);
}

.form-success-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--ink-900);
}

.form-success-text {
    font-size: 0.9rem;
    color: var(--ink-500);
    font-weight: 300;
    line-height: 1.7;
}

/* ─── FOOTER ─── */
.footer {
    background-color: var(--emerald-900);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo-mark {
    font-family: var(--font-serif);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 4px 7px;
    display: inline-block;
    margin-bottom: 16px;
}

.footer-logo-text {
    display: block;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 0.88rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    max-width: 280px;
}

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

.footer-links-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    transition: color 0.3s;
}

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

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

.footer-contact p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.footer-contact a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
    transition: color 0.3s;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 28px 0;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 300;
}

/* ─── ANIMATIONS ─── */
.fade-up {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

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

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }

    .about-layout {
        gap: 48px;
    }

    .contact-layout {
        gap: 48px;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        inset: 0;
        background-color: var(--cream-50);
        flex-direction: column;
        justify-content: center;
        gap: 24px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s var(--ease-out), visibility 0.4s;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-links.open .nav-link {
        color: var(--ink-900) !important;
        font-size: 14px;
    }

    .nav-links.open .nav-link--cta {
        background-color: var(--emerald-800) !important;
        color: var(--white) !important;
        border-color: var(--emerald-800) !important;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-headline {
        font-size: clamp(3rem, 18vw, 5rem);
    }

    .hero-headline br {
        display: block;
    }

    .strip-inner {
        flex-direction: column;
        gap: 0;
    }

    .strip-item {
        flex-direction: row;
        gap: 12px;
        padding: 16px 0;
        width: 100%;
    }

    .strip-divider {
        width: 40px;
        height: 1px;
        order: -1;
    }

    .services {
        padding: 80px 0;
    }

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

    .service-card {
        padding: 36px 28px;
    }

    .about {
        padding: 80px 0;
    }

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

    .about-image img {
        height: 350px;
    }

    .about-image-accent {
        display: none;
    }

    .process {
        padding: 80px 0;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .process-step {
        padding: 0;
    }

    .cta-banner {
        padding: 80px 0;
    }

    .cta-title br {
        display: block;
    }

    .contact {
        padding: 80px 0;
    }

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

    .contact-form-wrap {
        padding: 32px 24px;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

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

    .btn {
        width: 100%;
        text-align: center;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}
