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

:root {
    --green-deep: #1A3A2A;
    --green-forest: #2D5A3D;
    --green-mid: #3D7A52;
    --green-light: #E8F0EB;
    --green-pale: #F4F7F5;
    --off-white: #FAFAF7;
    --cream: #F5F5F0;
    --text-dark: #1A1A18;
    --text-mid: #3A3A36;
    --text-light: #6A6A64;
    --text-muted: #9A9A94;
    --line: rgba(45, 90, 61, 0.12);
    --line-strong: rgba(45, 90, 61, 0.25);
    --font-serif: 'Cormorant Garamond', 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;
}

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

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

/* ── NAV ──────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 250, 247, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.4s var(--ease-smooth);
}

.nav.scrolled {
    border-bottom-color: var(--line);
}

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

.nav__brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav__brand-line {
    width: 32px;
    height: 1px;
    background: var(--green-forest);
    display: block;
}

.nav__brand-text {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--green-deep);
}

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

.nav__link {
    font-size: 0.8125rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-mid);
    transition: color 0.3s var(--ease-smooth);
    position: relative;
}

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

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

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

.nav__link--cta {
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--line-strong);
    border-radius: 100px;
    transition: all 0.3s var(--ease-smooth);
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background: var(--green-forest);
    border-color: var(--green-forest);
    color: #fff;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav__toggle-line {
    width: 22px;
    height: 1px;
    background: var(--text-dark);
    transition: all 0.3s var(--ease-smooth);
    transform-origin: center;
}

.nav__toggle.active .nav__toggle-line:first-child {
    transform: rotate(45deg) translate(4px, 4px);
}

.nav__toggle.active .nav__toggle-line:last-child {
    transform: rotate(-45deg) translate(4px, -4px);
}

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

.hero__bg {
    position: absolute;
    inset: 0;
    background: url('https://images.pexels.com/photos/3935316/pexels-photo-3935316.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center center / cover no-repeat;
    transform: scale(1.05);
    animation: heroZoom 20s var(--ease-smooth) infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(26, 58, 42, 0.55) 0%,
        rgba(26, 58, 42, 0.40) 50%,
        rgba(26, 58, 42, 0.65) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1.75rem;
    letter-spacing: -0.01em;
}

.hero__headline-accent {
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
}

.hero__sub {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin: 0 auto 2.5rem;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero__scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
}

.hero__scroll span {
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.hero__scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollLine 2s var(--ease-smooth) infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── BUTTONS ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 100px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.35s var(--ease-smooth);
}

.btn--primary {
    background: var(--green-forest);
    border-color: var(--green-forest);
    color: #fff;
}

.btn--primary:hover {
    background: var(--green-deep);
    border-color: var(--green-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(45, 90, 61, 0.25);
}

.btn--ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

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

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

/* ── SECTION LABELS ───────────────────────────────── */
.section-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--green-forest);
    margin-bottom: 1.25rem;
}

.section-heading {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
}

/* ── INTRO / ABOUT ────────────────────────────────── */
.intro {
    padding: 8rem 0;
}

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

.intro__image-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.intro__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.intro__image-wrap:hover img {
    transform: scale(1.03);
}

.intro__text p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-mid);
    margin-bottom: 1.25rem;
}

.intro__stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--line);
}

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

.stat__number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--green-forest);
}

.stat__label {
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

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

/* ── SERVICES ─────────────────────────────────────── */
.services {
    padding: 8rem 0;
    background: var(--green-pale);
}

.services__header {
    text-align: center;
    margin-bottom: 4rem;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--off-white);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 2.25rem 1.75rem;
    transition: all 0.4s var(--ease-out);
}

.service-card:hover {
    border-color: var(--line-strong);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(45, 90, 61, 0.08);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--green-forest);
    transition: all 0.3s var(--ease-smooth);
}

.service-card:hover .service-card__icon {
    background: var(--green-forest);
    border-color: var(--green-forest);
    color: #fff;
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.875rem;
}

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

/* ── AREAS ────────────────────────────────────────── */
.areas {
    padding: 8rem 0;
}

.areas__header {
    text-align: center;
    margin-bottom: 4rem;
}

.areas__desc {
    font-size: 1.0625rem;
    color: var(--text-light);
    max-width: 480px;
    margin: 0 auto;
}

.areas__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
}

.area-item {
    background: var(--off-white);
    padding: 2.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s var(--ease-smooth);
    cursor: default;
}

.area-item:hover {
    background: var(--green-light);
}

.area-item__name {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--text-dark);
}

.area-item__tag {
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    padding: 0.375rem 0.75rem;
    border: 1px solid var(--line);
    border-radius: 100px;
    white-space: nowrap;
}

/* ── TESTIMONIALS ─────────────────────────────────── */
.testimonials {
    padding: 8rem 0;
    background: var(--green-deep);
}

.testimonials__header {
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials__header .section-label {
    color: rgba(255, 255, 255, 0.5);
}

.testimonials__header .section-heading {
    color: #fff;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 2.25rem;
    transition: all 0.4s var(--ease-out);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.testimonial-card__quote-mark {
    font-family: var(--font-serif);
    font-size: 4rem;
    line-height: 1;
    color: var(--green-mid);
    margin-bottom: 0.5rem;
}

.testimonial-card__text {
    font-size: 0.9375rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.75rem;
}

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

.testimonial-card__name {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 400;
    color: #fff;
}

.testimonial-card__location {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ── CTA / CONTACT ────────────────────────────────── */
.cta {
    padding: 8rem 0;
    background: var(--cream);
}

.cta__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.cta__heading {
    margin-bottom: 1.25rem;
}

.cta__desc {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.cta__contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cta__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cta__contact-item svg {
    color: var(--green-forest);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.cta__contact-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.cta__contact-value {
    font-size: 0.9375rem;
    color: var(--text-mid);
    transition: color 0.3s var(--ease-smooth);
}

.cta__contact-value:hover {
    color: var(--green-forest);
}

/* ── FORM ─────────────────────────────────────────── */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-input {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text-dark);
    background: #fff;
    border: 1px solid var(--line-strong);
    border-radius: 4px;
    padding: 0.875rem 1rem;
    transition: all 0.3s var(--ease-smooth);
    outline: none;
    width: 100%;
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    border-color: var(--green-forest);
    box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.08);
}

.form-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='%236A6A64' 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 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

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

.form-success {
    display: none;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--green-light);
    border: 1px solid var(--line-strong);
    border-radius: 4px;
    font-size: 0.9375rem;
    color: var(--green-forest);
}

.form-success svg {
    flex-shrink: 0;
}

/* ── FOOTER ───────────────────────────────────────── */
.footer {
    padding: 4rem 0 2.5rem;
    background: var(--text-dark);
}

.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer__brand-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: #fff;
    display: block;
    margin-bottom: 0.25rem;
}

.footer__brand-sub {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer__nav {
    display: flex;
    gap: 2rem;
}

.footer__nav a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s var(--ease-smooth);
}

.footer__nav a:hover {
    color: #fff;
}

.footer__divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 2rem;
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer__copy,
.footer__license {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.3);
}

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

.reveal.visible {
    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; }

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

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

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

    .testimonials__grid .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav__links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(250, 250, 247, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.5s var(--ease-out);
    }

    .nav__links.open {
        transform: translateX(0);
    }

    .nav__link {
        font-size: 1rem;
    }

    .nav__toggle {
        display: flex;
    }

    .intro__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .intro__image-wrap {
        max-height: 400px;
    }

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

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

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

    .testimonials__grid .testimonial-card:last-child {
        max-width: 100%;
    }

    .cta__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer__top {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .footer__nav {
        flex-wrap: wrap;
        gap: 1.25rem;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .nav__inner {
        padding: 0 1.25rem;
    }

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

    .btn {
        width: 100%;
        max-width: 280px;
    }

    .intro__stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
    }

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

    .area-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
}
