@media (max-width: 900px) {
  .nav__links {
    display: none;
  }
  .nav__links--open {
    display: flex;
  }
}
@font-face {
        font-family: 'Matter';
        src: url('../fonts/Matter Regular.woff') format('truetype');
        font-weight: 400;
        font-style: normal;
        font-display: swap;
    }
    @font-face {
        font-family: 'Matter';
        src: url('../fonts/Matter Regular.woff') format('truetype');
        font-weight: 500;
        font-style: normal;
        font-display: swap;
    }
    @font-face {
        font-family: 'Matter';
        src: url('../fonts/Matter Regular.woff') format('truetype');
        font-weight: 600;
        font-style: normal;
        font-display: swap;
    }
    @font-face {
        font-family: 'Gilory';
        src: url('../fonts/Gilroy-Regular.woff') format('truetype');
        font-weight: 400;
        font-style: normal;
        font-display: swap;
    }
    @font-face {
        font-family: 'Gilory';
        src: url('../fonts/Gilroy-Regular.woff') format('truetype');
        font-weight: 400;
        font-style: italic;
        font-display: swap;
    }

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

:root {
    --green-primary: #1A3A2E;
    --green-secondary: #87A96B;
    --accent-mint: #98FB98;
    --bg-offwhite: #F7F9F7;
    --divider: #E0E6DC;
    --text-muted: #6B7B6B;
    --container-max: 1240px;
    --font-body: 'Matter', system-ui, sans-serif;
    --font-display: 'Gilory', Georgia, serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--green-primary);
    background: #fff;
    overflow-x: hidden;
    transition: all 0.3s ease;
}

[data-animate="logo"],
[data-animate="content"],
.services,
.work-logos,
.about,
.cta-band,
.footer {
  will-change: opacity, transform;
}

.section-label {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--green-secondary);
    font-weight: 600;
    margin-bottom: 16px;
}

.section-label--light {
    color: rgba(152, 251, 152, 0.8);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 220ms ease;
    border: none;
}

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

.btn--dark:hover {
    background: #122a20;
    transform: translateY(-1px);
}

.btn--ghost {
    background: transparent;
    color: var(--green-primary);
    border: 1.5px solid var(--green-primary);
}

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

.btn--mint {
    background: var(--accent-mint);
    color: var(--green-primary);
}

.btn--mint:hover {
    background: #7fe87f;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(152, 251, 152, 0.3);
}

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--divider);
    transition: box-shadow 300ms ease;
}

.nav.scrolled {
    box-shadow: 0 4px 24px rgba(26,58,46,0.06);
}

.nav__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.nav__logo:hover {
    transform: scale(1.05);
}

.nav__logo img {
    height: 100px;
    width: auto;
    display: block;
    object-fit: contain;
}

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

.nav__link {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 180ms ease;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--green-secondary);
    transition: width 220ms ease;
}

.nav__link:hover,
.nav__link--active {
    color: var(--green-primary);
}

.nav__link:hover::after,
.nav__link--active::after {
    width: 100%;
}

.nav__cta {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: var(--green-primary);
    padding: 9px 20px;
    transition: background 200ms ease, transform 160ms ease;
}

.nav__cta:hover {
    background: #122a20;
    transform: translateY(-1px);
}

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

.nav__toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--green-primary);
    transition: all 280ms ease;
}

.hero {
    min-height: 100vh;
    background: var(--green-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 0 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 70% 40%, rgba(135,169,107,0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(152,251,152,0.04) 0%, transparent 60%);
    pointer-events: none;
}

.hero__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-end;
    flex: 1;
    padding-bottom: 80px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: rgba(255,255,255,0.65);
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-bottom: 32px;
}

.hero__badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-mint);
}

.hero__heading {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(52px, 7.5vw, 96px);
    line-height: 1.0;
    color: #fff;
    margin-bottom: 40px;
    letter-spacing: -0.02em;
}

.hero__line {
    display: block;
}

.hero__line--indent {
    padding-left: clamp(40px, 6vw, 80px);
    color: var(--green-secondary);
}

.hero__heading em {
    font-style: italic;
    color: var(--accent-mint);
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero__right {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 48px;
    padding-bottom: 8px;
}

.hero__desc {
    font-size: clamp(15px, 1.6vw, 17px);
    color: rgba(255,255,255,0.62);
    line-height: 1.75;
    max-width: 400px;
}

.hero__stats {
    display: flex;
    gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
}

.stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 24px;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.stat:last-child {
    border-right: none;
    padding-left: 24px;
    padding-right: 0;
}

.stat:not(:first-child):not(:last-child) {
    padding-left: 24px;
}

.stat__num {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.5vw, 42px);
    color: #fff;
    line-height: 1;
}

.stat__label {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 500;
}

.hero__ticker {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
    overflow: hidden;
    white-space: nowrap;
    margin-top: auto;
}

.hero__ticker-track {
    display: inline-flex;
    gap: 32px;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.05em;
    font-weight: 500;
}

.hero__ticker-dot {
    color: var(--green-secondary);
    opacity: 0.5;
}

.services {
    background: #fff;
    padding: 110px 40px;
}

.services__inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.services__header {
    display: flex;
    flex-direction: column;
    margin-bottom: 60px;
}

.services__heading {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 400;
    color: var(--green-primary);
    letter-spacing: -0.02em;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--divider);
}

.svc-card {
    padding: 48px 40px;
    border-right: 1px solid var(--divider);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: background 280ms ease;
    position: relative;
    overflow: hidden;
}

.svc-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--green-secondary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 300ms ease;
}

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

.svc-card:last-child {
    border-right: none;
}

.svc-card:hover {
    background: var(--bg-offwhite);
}

.svc-card--featured {
    background: var(--green-primary);
}

.svc-card--featured .svc-card__num,
.svc-card--featured .svc-card__icon,
.svc-card--featured .svc-card__title,
.svc-card--featured .svc-card__desc {
    color: rgba(255,255,255,0.9);
}

.svc-card--featured .svc-card__link {
    color: var(--accent-mint);
}

.svc-card--featured:hover {
    background: #122a20;
}

.svc-card--featured::before {
    background: var(--accent-mint);
}

.svc-card__num {
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--green-secondary);
    font-weight: 600;
}

.svc-card__icon {
    width: 36px;
    height: 36px;
    color: var(--green-primary);
    margin: 8px 0;
}

.svc-card__icon svg {
    width: 100%;
    height: 100%;
}

.svc-card__title {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.2vw, 26px);
    font-weight: 400;
    color: var(--green-primary);
    letter-spacing: -0.01em;
    margin-top: 4px;
}

.svc-card__desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
}

.svc-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--green-secondary);
    text-decoration: none;
    margin-top: 8px;
    transition: gap 200ms ease;
}

.svc-card__link:hover {
    gap: 10px;
}

.work-logos {
    background: var(--green-primary);
    padding: 0;
}

.work-logos__top {
    padding: 100px 40px 80px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.work-logos__top-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 40px 80px;
    align-items: center;
}

.work-logos__heading {
    font-family: var(--font-display);
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.0;
    margin-top: 10px;
}

.work-logos__sub {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    max-width: 340px;
    align-self: center;
}

.work-logos__cta {
    white-space: nowrap;
    align-self: center;
}

.work-logos__strip {
    padding: 0 40px;
}

.work-logos__divider-top,
.work-logos__divider-bot {
    max-width: var(--container-max);
    margin: 0 auto;
    height: 1px;
    background: rgba(255,255,255,0.08);
}

.work-logos__row {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: stretch;
}

.work-logos__sep {
    width: 1px;
    background: rgba(255,255,255,0.08);
    flex-shrink: 0;
    align-self: stretch;
}

.work-logos__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    padding: 60px 48px;
    text-decoration: none;
    position: relative;
    transition: background 300ms ease;
    overflow: hidden;
}

.work-logos__item::after {
    content: 'View Project →';
    position: absolute;
    bottom: 28px;
    right: 48px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-mint);
    letter-spacing: 0.04em;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 250ms ease, transform 250ms ease;
}

.work-logos__item:hover {
    background: rgba(255,255,255,0.03);
}

.work-logos__item:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.work-logos__name {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.8vw, 52px);
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    letter-spacing: -0.02em;
    line-height: 1;
    transition: color 280ms ease;
}

.work-logos__item:hover .work-logos__name {
    color: #fff;
}

.work-logos__tag {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.22);
    font-weight: 600;
    transition: color 280ms ease;
}

.work-logos__item:hover .work-logos__tag {
    color: var(--green-secondary);
}

.about {
    background: #fff;
    padding: 110px 40px;
}

.about__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.about__heading {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 400;
    color: var(--green-primary);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.about__desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 36px;
    max-width: 380px;
}

.about__right {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding-top: 12px;
}

.about__panel {
    padding: 36px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about__divider {
    height: 1px;
    background: var(--divider);
}

.about__panel-num {
    font-size: 11px;
    letter-spacing: 0.18em;
    color: var(--green-secondary);
    font-weight: 600;
}

.about__panel-title {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 400;
    color: var(--green-primary);
    letter-spacing: -0.01em;
}

.about__panel-text {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.cta-band {
    background: var(--green-primary);
    padding: 120px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-band__inner {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.cta-band__heading {
    font-family: var(--font-display);
    font-size: clamp(40px, 6.5vw, 72px);
    font-weight: 400;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 8px;
}

.cta-band__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(135,169,107,0.1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-ring--1 { width: 500px; height: 500px; }
.cta-ring--2 { width: 800px; height: 800px; border-color: rgba(135,169,107,0.05); }

.footer {
    background: var(--green-primary);
    color: rgba(255,255,255,0.7);
    padding: 70px 40px 36px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
    max-width: var(--container-max);
    margin: 0 auto;
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer__logo {
    display: block;
    margin-bottom: 16px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer__logo:hover {
    opacity: 0.85;
}

.footer__logo img {
    height: 72px;
    width: auto;
    display: block;
    object-fit: contain;
}

.footer__tagline {
    font-size: 14px;
    line-height: 1.65;
    color: rgba(255,255,255,0.4);
    max-width: 220px;
}

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

.footer__col h4 {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    font-weight: 600;
    margin-bottom: 20px;
}

.footer__col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__col a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 180ms ease;
}

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

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

.footer__status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.45);
}

.footer__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2ecc71;
    flex-shrink: 0;
}

.footer__copy {
    font-size: 13px;
    color: rgba(255,255,255,0.3);
}

.toast {
    position: fixed;
    right: 20px;
    bottom: 24px;
    background: var(--green-primary);
    color: #fff;
    padding: 14px 22px;
    font-size: 14px;
    border-left: 3px solid var(--accent-mint);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 220ms ease, transform 220ms ease;
    pointer-events: none;
    z-index: 9999;
}

.toast.show {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .hero__inner { gap: 50px; }
    .about__inner { gap: 60px; }
    .work-logos__top-inner { grid-template-columns: 1fr 1fr; }
    .work-logos__cta { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    .services__grid { grid-template-columns: 1fr; }
    .svc-card { border-right: none; border-bottom: 1px solid var(--divider); }
    .svc-card:last-child { border-bottom: none; }
    .footer__top { grid-template-columns: 1fr; gap: 48px; }
    .footer__nav { grid-template-columns: repeat(3, 1fr); }

    .work-logos__top-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .work-logos__row {
        flex-direction: column;
    }
    .work-logos__sep {
        width: 100%;
        height: 1px;
    }
    .work-logos__item {
        padding: 44px 32px;
    }
    .work-logos__item::after {
        bottom: 20px;
        right: 32px;
    }
}

@media (max-width: 768px) {
    .nav__inner {
        padding: 0 20px;
        height: 64px;
    }
    .nav__logo img {
        height: 48px;
    }
    .nav__toggle { display: flex; }
    .nav__links {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        gap: 4px;
        border-bottom: 1px solid var(--divider);
        box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    }
    .nav__links.show { display: flex !important; }
    .nav__links--open { display: flex; }
    .nav__link { padding: 10px 0; font-size: 15px; }
    .nav__cta { margin-top: 8px; text-align: center; padding: 12px; }

    .hero__inner {
        grid-template-columns: 1fr;
        gap: 48px;
        padding-bottom: 60px;
    }
    .hero__right { gap: 32px; }
    .hero__stats { flex-direction: row; flex-wrap: wrap; }
    .stat { min-width: 30%; }
    .stat:last-child { padding-left: 0; }

    .services { padding: 70px 20px; }
    .about { padding: 70px 20px; }
    .about__inner { grid-template-columns: 1fr; gap: 48px; }
    .cta-band { padding: 80px 20px; }
    .footer { padding: 56px 20px 28px; }
    .footer__nav { grid-template-columns: repeat(2, 1fr); }

    .work-logos__top {
        padding: 70px 20px 60px;
    }
    .work-logos__strip {
        padding: 0 20px;
    }
    .work-logos__item {
        padding: 36px 20px;
    }
    .work-logos__item::after {
        right: 20px;
        bottom: 16px;
    }
}

@media (max-width: 480px) {
    .hero { padding-top: 88px; }
    .hero__inner { padding: 0 20px 48px; }
    .hero__heading { font-size: 44px; }
    .hero__actions { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .footer__nav { grid-template-columns: 1fr 1fr; }
    .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { transition: none !important; animation: none !important; }
}