/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --forest-50: #f2f5f0;
    --forest-100: #e3e9df;
    --forest-200: #c7d4c0;
    --forest-400: #769a6e;
    --forest-500: #547d4e;
    --forest-600: #3f6039;
    --forest-700: #334e2f;
    --forest-800: #293e26;
    --forest-900: #22311f;
    --cream: #FAF8F4;
    --warm: #F5F0E8;
    --ink: #1A1A1A;
    --ink-light: #3a3a3a;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    background-color: var(--cream);
    color: var(--ink);
    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;
}

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

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

.container--narrow {
    max-width: 900px;
}

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
    padding: 20px 0;
}

.nav.scrolled {
    background: rgba(250, 248, 244, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
    padding: 12px 0;
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--cream);
    transition: color var(--transition);
}

.nav.scrolled .nav__logo {
    color: var(--forest-800);
}

.nav__logo-icon {
    color: var(--cream);
    transition: color var(--transition);
}

.nav.scrolled .nav__logo-icon {
    color: var(--forest-600);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: rgba(250, 248, 244, 0.85);
    transition: color var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: currentColor;
    transition: width var(--transition);
}

.nav__link:hover::after {
    width: 100%;
}

.nav.scrolled .nav__link {
    color: var(--ink-light);
}

.nav.scrolled .nav__link:hover {
    color: var(--forest-700);
}

.nav__cta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--cream);
    background: var(--forest-600);
    padding: 10px 20px;
    border-radius: 100px;
    transition: background var(--transition), transform var(--transition);
}

.nav__cta:hover {
    background: var(--forest-700);
    transform: translateY(-1px);
}

.nav__menu-btn {
    display: none;
    color: var(--cream);
    padding: 8px;
    transition: color var(--transition);
}

.nav.scrolled .nav__menu-btn {
    color: var(--forest-800);
}

/* ===== MOBILE NAV ===== */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-nav__link {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--ink);
    transition: color var(--transition);
}

.mobile-nav__link:hover {
    color: var(--forest-600);
}

.mobile-nav__cta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--forest-600);
    margin-top: 8px;
}

/* ===== 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__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(17, 25, 14, 0.55) 0%,
        rgba(34, 49, 31, 0.7) 50%,
        rgba(17, 25, 14, 0.85) 100%
    );
}

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

.hero__eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--forest-200);
    margin-bottom: 24px;
}

.hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--cream);
    margin-bottom: 28px;
}

.hero__title-accent {
    font-style: italic;
    font-weight: 600;
    color: var(--forest-200);
}

.hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 1.7;
    color: rgba(250, 248, 244, 0.8);
    max-width: 580px;
    margin: 0 auto 44px;
}

.hero__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(250, 248, 244, 0.5);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    letter-spacing: 0.01em;
    padding: 14px 28px;
    border-radius: 100px;
    transition: all var(--transition);
}

.btn--primary {
    background: var(--forest-600);
    color: var(--cream);
}

.btn--primary:hover {
    background: var(--forest-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(63, 96, 57, 0.3);
}

.btn--ghost {
    background: rgba(250, 248, 244, 0.12);
    color: var(--cream);
    border: 1px solid rgba(250, 248, 244, 0.25);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    background: rgba(250, 248, 244, 0.2);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--forest-600);
    border: 1.5px solid var(--forest-600);
}

.btn--outline:hover {
    background: var(--forest-600);
    color: var(--cream);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 18px 36px;
    font-size: 1rem;
}

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

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--forest-800);
    padding: 0;
}

.trust-bar__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px 32px;
    border-right: 1px solid rgba(250, 248, 244, 0.08);
    color: var(--cream);
}

.trust-item:last-child {
    border-right: none;
}

.trust-item__icon {
    color: var(--forest-400);
    flex-shrink: 0;
}

.trust-item span {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ===== SECTION HEADER ===== */
.section-header {
    max-width: 720px;
}

.section-header--centered {
    margin: 0 auto 64px;
    text-align: center;
}

.section-header__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--forest-600);
    margin-bottom: 16px;
}

.section-header__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--ink);
    margin-bottom: 20px;
}

.section-header__desc {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--ink-light);
}

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

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.service-card {
    background: var(--warm);
    border-radius: 16px;
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.service-card__img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card__img img {
    transform: scale(1.05);
}

.service-card__num {
    position: absolute;
    top: 16px;
    right: 16px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(250, 248, 244, 0.2);
    line-height: 1;
}

.service-card__body {
    padding: 28px;
}

.service-card__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 10px;
}

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

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    background: var(--forest-800);
}

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

.about__image {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 7/9;
}

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

.about__content {
    color: var(--cream);
}

.about__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.12;
    margin-bottom: 28px;
}

.about__text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(250, 248, 244, 0.75);
    margin-bottom: 20px;
}

.about__values {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.value-item {
    border-left: 2px solid var(--forest-400);
    padding-left: 20px;
}

.value-item__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--forest-400);
    margin-bottom: 4px;
}

.value-item__text {
    font-size: 1.0625rem;
    font-weight: 500;
    color: var(--cream);
}

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

.process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 64px;
    position: relative;
}

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

.process-step__num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--forest-100);
    line-height: 1;
    margin-bottom: 16px;
}

.process-step__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 12px;
}

.process-step__desc {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--ink-light);
}

.process-step__connector {
    display: none;
}

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

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

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

.cta-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(17, 25, 14, 0.9) 0%,
        rgba(34, 49, 31, 0.8) 60%,
        rgba(34, 49, 31, 0.6) 100%
    );
}

.cta-banner__content {
    position: relative;
    z-index: 1;
}

.cta-banner__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--forest-400);
    margin-bottom: 16px;
}

.cta-banner__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 4.5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--cream);
    margin-bottom: 20px;
    max-width: 600px;
}

.cta-banner__text {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: rgba(250, 248, 244, 0.75);
    max-width: 480px;
    margin-bottom: 40px;
}

.cta-banner__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact {
    padding: 120px 0;
    background: var(--warm);
}

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

.contact__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.12;
    color: var(--ink);
    margin-bottom: 20px;
}

.contact__text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ink-light);
    margin-bottom: 40px;
}

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

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

.contact-detail__icon {
    color: var(--forest-600);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-detail__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--forest-600);
    margin-bottom: 4px;
}

.contact-detail__value {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink);
    font-weight: 500;
}

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

.contact-detail__value a:hover {
    color: var(--forest-600);
}

/* ===== FORM ===== */
.contact-form {
    background: var(--cream);
    border-radius: 20px;
    padding: 44px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.06);
}

.contact-form__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}

.contact-form__subtitle {
    font-size: 0.9375rem;
    color: var(--ink-light);
    margin-bottom: 32px;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: 8px;
}

.form-group__input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--forest-100);
    border-radius: 10px;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 0.9375rem;
    color: var(--ink);
    background: var(--cream);
    transition: border-color var(--transition), box-shadow var(--transition);
    outline: none;
}

.form-group__input:focus {
    border-color: var(--forest-600);
    box-shadow: 0 0 0 3px rgba(63, 96, 57, 0.1);
}

.form-group__input::placeholder {
    color: #aaa;
}

.form-group__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.contact-form__success {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: var(--forest-100);
    border-radius: 10px;
    color: var(--forest-800);
    font-weight: 500;
    font-size: 0.9375rem;
    margin-top: 16px;
}

.contact-form__success.show {
    display: flex;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--forest-950);
    color: var(--cream);
    padding: 80px 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(250, 248, 244, 0.08);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 16px;
}

.footer__tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(250, 248, 244, 0.55);
    max-width: 300px;
}

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

.footer__link-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__link-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--forest-400);
    margin-bottom: 4px;
}

.footer__link-group a {
    font-size: 0.9375rem;
    color: rgba(250, 248, 244, 0.6);
    transition: color var(--transition);
}

.footer__link-group a:hover {
    color: var(--cream);
}

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

.footer__bottom p {
    font-size: 0.8125rem;
    color: rgba(250, 248, 244, 0.4);
}

.footer__bottom a {
    color: rgba(250, 248, 244, 0.4);
    transition: color var(--transition);
}

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

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

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

    .about__layout {
        gap: 48px;
    }

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

    .contact__layout {
        gap: 48px;
    }

    .footer__top {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }

    .nav__menu-btn {
        display: flex;
    }

    .trust-bar__items {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item {
        padding: 20px 24px;
    }

    .trust-item:nth-child(2) {
        border-right: none;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .about__image {
        aspect-ratio: 4/3;
    }

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

    .process-step {
        text-align: left;
        display: grid;
        grid-template-columns: 60px 1fr;
        gap: 16px;
        align-items: start;
    }

    .process-step__num {
        font-size: 2.5rem;
    }

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

    .cta-banner__actions {
        flex-direction: column;
    }

    .cta-banner__actions .btn {
        justify-content: center;
    }

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

    .contact-form {
        padding: 28px;
    }

    .contact-form__row {
        grid-template-columns: 1fr;
    }

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

    .footer__links {
        grid-template-columns: repeat(2, 1fr);
    }

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

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
        width: 100%;
    }

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

    .trust-bar__items {
        grid-template-columns: 1fr;
    }

    .trust-item {
        border-right: none;
        border-bottom: 1px solid rgba(250, 248, 244, 0.08);
    }

    .trust-item:last-child {
        border-bottom: none;
    }

    .footer__links {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}
