:root {
    --green: #65ad45;
    --green-bright: #85c95b;
    --green-dark: #183f25;
    --ink: #112319;
    --muted: #66746a;
    --cream: #f7f8f2;
    --line: #dde5dc;
    --white: #fff;
    --max: 1180px;
    --shadow: 0 24px 70px rgba(24, 63, 37, .12)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 88px
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--cream);
    font-family: Manrope, Arial, sans-serif;
    -webkit-font-smoothing: antialiased
}

body.menu-open {
    overflow: hidden
}

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

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

.container {
    width: min(var(--max), calc(100% - 48px));
    margin: auto
}

.section {
    padding: 112px 0;
    position: relative;
    overflow: hidden
}

.skip-link {
    position: fixed;
    top: -100px;
    left: 20px;
    background: #fff;
    padding: 12px 18px;
    z-index: 1000
}

.skip-link:focus {
    top: 20px
}

.site-header {
    height: 82px;
    position: fixed;
    inset: 0 0 auto;
    z-index: 100;
    background: rgba(247, 248, 242, .88);
    border-bottom: 1px solid rgba(24, 63, 37, .08);
    backdrop-filter: blur(14px)
}

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

.brand img {
    width: 177px;
    height: auto
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 13px;
    font-weight: 700
}

.nav a {
    transition: .2s
}

.nav a:hover {
    color: var(--green)
}

.nav-cta {
    color: white !important;
    background: var(--green-dark);
    border-radius: 100px;
    padding: 13px 20px
}

.nav-cta:hover {
    background: var(--green) !important
}

.menu-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 8px
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--ink);
    margin: 5px
}

.hero {
    min-height: 100vh;
    padding-top: 150px;
    display: grid;
    align-items: center;
    background: linear-gradient(135deg, #f9fbf5 0%, #edf7e7 100%)
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(71, 112, 67, .13) 1px, transparent 1px);
    background-size: 25px 25px;
    mask-image: linear-gradient(to right, black, transparent 72%)
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2
}

.eyebrow,
.kicker {
    color: #4d9137;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .16em;
    font-size: 12px
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px
}

.eyebrow span {
    width: 33px;
    height: 2px;
    background: var(--green)
}

h1,
h2,
h3,
p {
    margin-top: 0
}

h1 {
    font-size: clamp(48px, 6vw, 80px);
    letter-spacing: -.055em;
    line-height: 1.02;
    margin: 24px 0
}

h1 em,
h2 em {
    font-style: normal;
    color: var(--green)
}

.hero-text {
    max-width: 635px;
    font-size: 19px;
    line-height: 1.7;
    color: var(--muted)
}

.hero-actions {
    display: flex;
    gap: 13px;
    margin: 36px 0 50px
}

.button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 0 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 800;
    transition: .25s
}

.button-primary {
    background: var(--green);
    color: white;
    box-shadow: 0 13px 30px rgba(101, 173, 69, .25)
}

.button-primary:hover {
    background: var(--green-dark);
    transform: translateY(-2px)
}

.button-ghost {
    border: 1px solid #bdcbbc;
    background: rgba(255, 255, 255, .55)
}

.button-ghost:hover {
    border-color: var(--green);
    color: var(--green)
}

.trust-row {
    display: flex;
    gap: 38px
}

.trust-row div {
    display: flex;
    gap: 10px;
    align-items: center
}

.trust-row strong {
    font-size: 26px;
    letter-spacing: -.05em
}

.trust-row span {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
    line-height: 1.5;
    color: var(--muted)
}

.hero-visual {
    min-height: 540px;
    display: flex;
    align-items: center;
    justify-content: center
}

.portrait-frame {
    width: 430px;
    height: 430px;
    position: relative;
    border: 1px solid rgba(101, 173, 69, .28);
    border-radius: 50%;
    display: grid;
    place-items: center
}

.portrait-frame:before {
    content: "";
    position: absolute;
    inset: 34px;
    border: 1px dashed rgba(101, 173, 69, .42);
    border-radius: 50%
}

.portrait-card {
    width: 315px;
    height: 390px;
    border-radius: 160px 160px 40px 40px;
    background: linear-gradient(155deg, #c8e3bc, #74b653);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 2
}

.portrait-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    image-rendering: auto
}

.orbit {
    position: absolute;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(101, 173, 69, .12)
}

.orbit-one {
    width: 14px;
    height: 14px;
    top: 50px;
    right: 65px
}

.orbit-two {
    width: 9px;
    height: 9px;
    bottom: 74px;
    left: 54px
}

.floating-note {
    position: absolute;
    z-index: 3;
    background: white;
    box-shadow: var(--shadow);
    border: 1px solid #e6ede2
}

.note-one {
    left: -20px;
    top: 65px;
    border-radius: 100px;
    padding: 13px 18px;
    font-size: 11px;
    font-weight: 800
}

.status-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    background: #58b83c;
    border-radius: 50%;
    margin-right: 7px
}

.note-two {
    right: -30px;
    bottom: 78px;
    border-radius: 9px;
    padding: 15px 20px
}

.note-two strong {
    display: block;
    font-size: 18px
}

.note-two small {
    color: var(--muted);
    font-size: 8px
}

.scroll-hint {
    position: absolute;
    z-index: 3;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted)
}

.scroll-hint span {
    display: inline-block;
    width: 25px;
    height: 1px;
    background: var(--green);
    vertical-align: middle;
    margin-right: 8px
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(3px)
}

.hero-glow-one {
    width: 340px;
    height: 340px;
    background: rgba(112, 199, 80, .11);
    right: -90px;
    top: 90px
}

.hero-glow-two {
    width: 170px;
    height: 170px;
    background: rgba(64, 142, 66, .1);
    left: 40%;
    bottom: -70px
}

.section-heading h2 {
    font-size: clamp(37px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -.045em;
    margin: 18px 0
}

.section-heading>p:last-child {
    color: var(--muted);
    line-height: 1.8;
    max-width: 610px
}

.centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 55px
}

.centered>p:last-child {
    margin-inline: auto
}

.about {
    background: white
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px
}

.about-copy {
    border-left: 1px solid var(--line);
    padding-left: 70px;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.8
}

.about-copy .lead {
    font-size: 23px;
    color: var(--ink);
    line-height: 1.55
}

.text-link {
    display: inline-block;
    color: var(--green);
    font-weight: 800;
    margin-top: 14px
}

.text-link span {
    padding-left: 10px
}

.services {
    background: var(--cream)
}

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

.service-card {
    min-height: 300px;
    padding: 35px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    position: relative;
    background: rgba(255, 255, 255, .35);
    transition: .3s
}

.service-card:hover {
    background: white;
    box-shadow: var(--shadow);
    z-index: 2;
    transform: translateY(-4px)
}

.service-card.featured {
    background: var(--green-dark);
    color: white
}

.service-number {
    position: absolute;
    right: 26px;
    top: 25px;
    font-size: 10px;
    letter-spacing: .1em;
    color: #8b9a8e
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--green);
    background: #e8f4e2;
    font-weight: 800;
    margin-bottom: 46px
}

.service-card h3 {
    font-size: 20px
}

.service-card p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 13px
}

.service-card.featured p {
    color: #c3d5c6
}

.service-cta {
    background: #dff0d6;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.service-cta p {
    color: #4c664e
}

.service-cta h3 {
    font-size: 26px;
    line-height: 1.3
}

.service-cta>a {
    position: absolute;
    right: 30px;
    bottom: 30px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    display: grid;
    place-items: center
}

.products {
    background: white
}

.products-grid {
    display: grid;
    grid-template-columns: .82fr 1.18fr;
    gap: 100px;
    align-items: center
}

.products .section-heading .button {
    margin-top: 20px
}

.product-list {
    border-top: 1px solid var(--line)
}

.product-item {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    gap: 20px;
    align-items: center;
    padding: 29px 5px;
    border-bottom: 1px solid var(--line);
    transition: .2s
}

.product-item:hover {
    padding-left: 16px;
    background: #f8fbf5
}

.product-item>span {
    color: var(--green);
    font-size: 11px;
    font-weight: 800
}

.product-item h3 {
    margin-bottom: 7px;
    font-size: 18px
}

.product-item p {
    margin: 0;
    color: var(--muted);
    font-size: 12px
}

.product-item b {
    font-size: 20px;
    color: var(--green);
    font-family: Arial, sans-serif;
    font-style: normal
}

.portfolio {
    background: #122d1b;
    color: white
}

.portfolio-head {
    display: grid;
    grid-template-columns: 1fr 380px;
    align-items: end;
    gap: 60px;
    margin-bottom: 50px
}

.portfolio-head>p {
    color: #a9baac;
    line-height: 1.8
}

.portfolio-grid {
    display: grid;
    grid-template-columns: 1.35fr .65fr;
    grid-template-rows: repeat(2, 330px);
    gap: 20px
}

.project {
    border-radius: 5px;
    overflow: hidden;
    background: white;
    color: var(--ink);
    display: flex;
    flex-direction: column
}

.project-wide {
    grid-row: 1/3
}

.project-preview {
    flex: 1;
    display: grid;
    place-items: center;
    overflow: hidden
}

.project-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .45s ease;
}

.project:hover .project-preview img {
  transform: scale(1.025);
}

.project-preview span {
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: clamp(30px, 4vw, 56px);
    font-weight: 800;
    line-height: .95;
    transform: rotate(-5deg)
}

.project-green .project-preview {
    background: linear-gradient(135deg, #cfe8c1, #5ca444);
    color: #173e25
}

.project-dark .project-preview {
    background: linear-gradient(135deg, #2d4a3b, #0b1710);
    color: #80c55a
}

.project-light .project-preview {
    background: linear-gradient(135deg, #eff4e9, #bed7af);
    color: #3f6c38
}

.project-info {
    min-height: 87px;
    padding: 19px 23px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.project-info small {
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #819084;
    font-size: 8px
}

.project-info h3 {
    font-size: 16px;
    margin: 5px 0 0
}

.project-info>span {
    font-size: 20px;
    color: var(--green)
}

.portfolio-note {
    text-align: center;
    color: #8ca090;
    font-size: 11px;
    margin: 25px 0 0
}

.contact {
    background: var(--cream)
}

.contact-card {
    padding: 70px;
    background: linear-gradient(130deg, #1c4a2b, #102d1a);
    color: white;
    display: grid;
    grid-template-columns: 1fr 390px;
    gap: 80px;
    align-items: center;
    border-radius: 6px;
    box-shadow: var(--shadow)
}

.kicker.light {
    color: #91d56a
}

.contact h2 {
    font-size: clamp(42px, 5vw, 64px);
    letter-spacing: -.05em;
    line-height: 1.06;
    margin: 20px 0
}

.contact h2 em {
    color: #8bd061
}

.contact-card>div>p:last-child {
    color: #b7c9ba;
    line-height: 1.8;
    max-width: 600px
}

.contact-actions {
    display: grid;
    gap: 12px
}

.contact-button {
    position: relative;
    background: white;
    color: var(--ink);
    padding: 20px 55px 20px 22px;
    border-radius: 5px;
    transition: .25s
}

.contact-button:hover {
    transform: translateX(5px)
}

.contact-button span {
    font-size: 13px;
    font-weight: 800
}

.contact-button small {
    display: block;
    color: var(--muted);
    margin-top: 4px
}

.contact-button b {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--green)
}

.contact-button.whatsapp {
    background: var(--green);
    color: white
}

.contact-button.whatsapp small {
    color: #e2f4db
}

.contact-button.whatsapp b {
    color: white
}

.footer {
    background: white;
    padding: 55px 0 25px
}

.footer-inner {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    align-items: center;
    gap: 40px
}

.footer-brand img {
    width: 160px
}

.footer-inner p {
    margin: 0;
    color: var(--muted);
    font-size: 12px
}

.social-links {
    display: flex;
    gap: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase
}

.footer-bottom {
    border-top: 1px solid var(--line);
    margin-top: 35px;
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    color: #8a978d;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .08em
}

.whatsapp-float {
    position: fixed;
    z-index: 50;
    right: 22px;
    bottom: 22px;
    width: 53px;
    height: 53px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #55ba4a;
    color: white;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(31, 101, 39, .3);
    transition: .2s
}

.whatsapp-float:hover {
    transform: scale(1.08)
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .65s ease, transform .65s ease
}

.reveal.visible {
    opacity: 1;
    transform: none
}

@media(max-width:900px) {
    .section {
        padding: 85px 0
    }

    .nav {
        position: fixed;
        inset: 82px 0 auto;
        background: var(--cream);
        padding: 35px 24px 45px;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        transform: translateY(-140%);
        transition: .3s;
        box-shadow: 0 25px 40px rgba(20, 45, 27, .14)
    }

    .nav.open {
        transform: none
    }

    .nav a {
        font-size: 16px;
        padding: 7px
    }

    .nav-cta {
        text-align: center;
        margin-top: 5px
    }

    .menu-toggle {
        display: block
    }

    .hero {
        padding-top: 125px
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center
    }

    .eyebrow {
        justify-content: center
    }

    .hero-text {
        margin-inline: auto
    }

    .hero-actions,
    .trust-row {
        justify-content: center
    }

    .hero-visual {
        min-height: 460px
    }

    .portrait-frame {
        width: 370px;
        height: 370px
    }

    .portrait-card {
        width: 270px;
        height: 340px
    }

    .about-grid,
    .products-grid,
    .contact-card {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .about-copy {
        padding: 0;
        border: 0
    }

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

    .portfolio-head {
        grid-template-columns: 1fr
    }

    .contact-card {
        padding: 50px
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center
    }
}

@media(max-width:600px) {
    .container {
        width: min(100% - 30px, var(--max))
    }

    .section {
        padding: 70px 0
    }

    .site-header {
        height: 72px
    }

    .nav {
        top: 72px
    }

    .brand img {
        width: 145px
    }

    h1 {
        font-size: 43px
    }

    .hero {
        padding-top: 110px
    }

    .hero-actions {
        flex-direction: column
    }

    .trust-row {
        gap: 16px
    }

    .trust-row div {
        display: block
    }

    .trust-row span {
        display: block;
        margin-top: 4px
    }

    .hero-visual {
        min-height: 390px
    }

    .portrait-frame {
        width: 300px;
        height: 300px
    }

    .portrait-card {
        width: 218px;
        height: 280px
    }

    .note-one {
        left: -7px;
        top: 20px
    }

    .note-two {
        right: -5px;
        bottom: 25px
    }

    .scroll-hint {
        display: none
    }

    .about-grid {
        gap: 30px
    }

    .section-heading h2 {
        font-size: 37px
    }

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

    .service-card {
        min-height: 270px
    }

    .products-grid {
        gap: 40px
    }

    .product-item {
        grid-template-columns: 28px 1fr 20px
    }

    .portfolio-grid {
        display: block
    }

    .project {
        height: auto;
        margin-bottom: 16px
    }

    .project-wide {
        height: auto
    }

    .project-preview {
        flex: 0 0 auto;
        display: block;
        height: auto
    }

    .project-wide .project-preview {
        aspect-ratio: 32 / 25
    }

    .project:not(.project-wide) .project-preview {
        aspect-ratio: 3 / 2
    }

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

    .contact-card {
        padding: 38px 24px
    }

    .contact h2 {
        font-size: 38px
    }

    .footer-inner {
        display: flex;
        flex-direction: column
    }

    .footer-bottom {
        display: block;
        text-align: center
    }

    .footer-bottom span {
        display: block;
        margin: 7px
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none
    }
}