:root {
    --bg: #0E130D;
    --panel: #161D13;
    --panel-2: #1B2317;
    --cream: #F3EEE2;
    --peach: #E8B998;
    --green: #A9CD5E;
    --green-deep: #7FA23E;
    --ink: #1C2117;
    --text: #ECEAE0;
    --text-dim: #AEBCA0;
    --line: rgba(236, 234, 224, 0.1);
    --radius-lg: 28px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --display: 'Sora', sans-serif;
    --accent-font: 'Fraunces', serif;
    --body: 'DM Sans', sans-serif;
    --mono: 'DM Mono', monospace;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    background: var(--bg);
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--display);
    font-weight: 600;
    line-height: 1.1;
    color: var(--text);
}

em {
    font-family: var(--accent-font);
    font-style: italic;
    font-weight: 500;
    color: var(--green);
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
}

/* ---------- Buttons & links ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 100px;
    font-family: var(--body);
    font-weight: 500;
    font-size: 15px;
    white-space: nowrap;
    transition: transform .35s cubic-bezier(.2, .8, .2, 1), background .3s, color .3s, box-shadow .3s;
}

.btn .arrow {
    font-size: 14px;
    transition: transform .35s;
}

.btn:hover .arrow {
    transform: translate(2px, -2px);
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-light {
    background: var(--green);
    color: var(--ink);
}

.btn-light:hover {
    box-shadow: 0 10px 24px rgba(169, 205, 94, .35);
}

.btn-accent {
    background: var(--green);
    color: var(--ink);
}

.btn-accent:hover {
    box-shadow: 0 10px 24px rgba(169, 205, 94, .35);
}

.btn-outline {
    border: 1px solid var(--line);
    color: var(--text);
    background: transparent;
}

.btn-outline:hover {
    background: var(--panel-2);
}

.btn-dark-sm {
    background: var(--ink);
    color: var(--cream);
    padding: 13px 22px;
    font-size: 14px;
}

.btn-dark-sm:hover {
    background: #000;
}

.link-underline {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 15px;
    padding-bottom: 4px;
    border-bottom: 1px solid currentColor;
}

.link-underline .arrow {
    transition: transform .3s;
}

.link-underline:hover .arrow {
    transform: translateX(4px);
}

.link-underline.sm {
    font-size: 14px;
}

.leaf-mini {
    width: 18px;
    height: 18px;
    color: var(--green);
    flex-shrink: 0;
}

.leaf-mini.big {
    width: 30px;
    height: 30px;
}

/* ---------- Navbar ---------- */
.nav-wrap {
    padding: 28px 0 10px;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--display);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.15;
}

.logo-leaf {
    width: 30px;
    height: 30px;
    color: var(--green);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-links a {
    font-size: 15px;
    color: var(--text-dim);
    position: relative;
    transition: color .3s;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-links a.active {
    color: var(--text);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
}

/* ---------- Hero ---------- */
.hero {
    padding: 18px 32px 0;
}

.hero-grid {
    background: var(--panel);
    border-radius: var(--radius-lg);
    padding: 64px 64px 64px 56px;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 40px;
    overflow: hidden;
    position: relative;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--mono);
    font-size: 13px;
    letter-spacing: .02em;
    color: var(--green);
    margin-bottom: 26px;
}

.eyebrow .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
}

.hero-title {
    font-size: clamp(38px, 5vw, 58px);
    margin-bottom: 26px;
    letter-spacing: -0.01em;
}

.hero-desc {
    max-width: 440px;
    color: var(--text-dim);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-media {
    position: relative;
    height: 440px;
    border-radius: 24px;
    overflow: hidden;
}

/* ---------- generic image placeholders ---------- */
.img-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: inherit;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.leaf-photo {
    background-image: url('/public/green_leaves.jpg');
    background-size: cover;
    background-position: center;
}

.plant-photo {
    background-image: url('/public/Ficus.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 0px 80px;
}

.arch-photo {
    background-image: url('/public/Group.jpg');
    background-size: cover;
    background-position: center;
}

.thumb {
    border-radius: 14px;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.thumb-1 {
    background-image: url('/public/leaf1.jpg');
}

.thumb-2 {
    background-image: url('/public/Rainy.jpg');
}

.img-tint {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, .25));
}

/* ---------- Intro / case study grid ---------- */
.intro-grid {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 340px 1fr;
    grid-template-rows: auto auto auto;
    gap: 20px;
}

.card {
    border-radius: var(--radius-lg);
    position: relative;
}

.card-dark {
    background: var(--panel);
    padding: 32px;
}

.card-cream {
    background: var(--cream);
    color: var(--ink);
    padding: 32px;
}

.card-cream h3,
.card-cream h4 {
    color: var(--ink);
}

.card-cream p {
    color: #5b6452;
}

.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(169, 205, 94, .12);
    color: var(--green);
    margin-bottom: 20px;
}

.icon-circle svg {
    width: 22px;
    height: 22px;
}

.icon-circle.light {
    background: rgba(169, 205, 94, .18);
}

.icon-circle.xs {
    width: 30px;
    height: 30px;
    margin: 0;
    background: rgba(28, 33, 23, .08);
}

.icon-circle.xs svg {
    width: 14px;
    height: 14px;
}

.exp-card {
    grid-column: 1;
    grid-row: 1;
}

.exp-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.exp-card p {
    color: var(--text-dim);
    font-size: 14.5px;
    line-height: 1.6;
}

.nature-card {
    grid-column: 1;
    grid-row: 2;
    overflow: hidden;
}

.nature-card h3 {
    font-size: 21px;
    margin-bottom: 10px;
}

.nature-card p {
    font-size: 14.5px;
    line-height: 1.6;
}

.corner-leaf {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 110px;
    height: 110px;
    color: rgba(28, 33, 23, .15);
    pointer-events: none;
}

.grow-cta {
    grid-column: 1;
    grid-row: 3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 18px;
    overflow: hidden;
}

.grow-cta p {
    font-size: 17px;
    font-family: var(--display);
    font-weight: 500;
}

.grow-cta .corner-leaf.bottom {
    color: rgba(169, 205, 94, .15);
    width: 140px;
    height: 170px;
}

.case-study {
    grid-column: 2;
    grid-row: 1/4;
    background: var(--peach);
    color: var(--ink);
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    padding-bottom: 64px;
    overflow: hidden;
}

.case-top {
    flex: 1 1 300px;
    padding: 44px 20px 30px 44px;
}

.case-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--mono);
    font-size: 12px;
    letter-spacing: .05em;
    color: #6b5a45;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.case-study h3 {
    font-size: 30px;
    color: var(--ink);
    margin-bottom: 16px;
    line-height: 1.2;
}

.case-desc {
    font-size: 15px;
    color: #5c4a38;
    line-height: 1.7;
    max-width: 380px;
    margin-bottom: 28px;
}

.case-media {
    flex: 1 1 280px;
    min-height: 380px;
    position: relative;
    align-self: stretch;
}

.case-stats {
    position: absolute;
    left: 36px;
    right: 36px;
    bottom: 26px;
    background: var(--cream);
    border-radius: 18px;
    z-index: 3;
    display: flex;
    box-shadow: 0 24px 50px rgba(0, 0, 0, .25);
}

.case-stats>div {
    flex: 1;
    padding: 24px 28px;
    border-right: 1px solid rgba(28, 33, 23, .08);
    text-align: left;
}

.case-stats>div:last-child {
    border-right: none;
}

.case-stats h4 {
    font-size: 26px;
    color: var(--ink);
    margin-bottom: 6px;
}

.case-stats p {
    font-size: 12.5px;
    color: #6b6457;
}

/* ---------- Services grid ---------- */
.services-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.services-card h2 {
    font-size: 24px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 30px;
}

.service-list li {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.service-list .icon-circle {
    margin-bottom: 0;
    flex-shrink: 0;
}

.service-list h4 {
    font-size: 17px;
    margin-bottom: 6px;
}

.service-list p {
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
}

.services-card>.link-underline {
    color: var(--text);
}

.sidebar-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lead-strategy {
    overflow: hidden;
    padding: 36px;
}

.lead-strategy h3 {
    font-size: 23px;
    margin-bottom: 14px;
    max-width: 260px;
}

.lead-strategy p {
    color: var(--text-dim);
    font-size: 15px;
    max-width: 280px;
    line-height: 1.6;
}

.corner-leaf.side {
    color: rgba(169, 205, 94, .18);
    width: 120px;
    height: 120px;
}

.testimonial {
    background: #D9E4B6;
    color: var(--ink);
    padding: 34px 36px;
}

.quote-mark {
    font-family: var(--accent-font);
    font-size: 48px;
    color: var(--green-deep);
    line-height: 0.6;
    margin-bottom: 6px;
}

.quote-text {
    font-size: 17px;
    line-height: 1.55;
    margin-bottom: 22px;
    max-width: 420px;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.avatar-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
    font-family: var(--display);
}

.quote-author h5 {
    font-size: 15px;
    color: var(--ink);
}

.quote-author p {
    font-size: 13px;
    color: #5b6452;
}

.dots {
    display: flex;
    gap: 6px;
}

.dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(28, 33, 23, .25);
}

.dots span.active {
    background: var(--ink);
    width: 18px;
    border-radius: 3px;
}

.stats-row {
    background: var(--panel);
    border-radius: var(--radius-lg);
    display: flex;
    padding: 30px 10px;
}

.stats-row>div {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.stats-row svg {
    width: 24px;
    height: 24px;
    color: var(--green);
    margin-bottom: 2px;
}

.stats-row h4 {
    font-size: 28px;
}

.stats-row p {
    font-size: 13px;
    color: var(--text-dim);
}

/* ---------- Insights + Beyond ---------- */
.bottom-grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.insights-card {
    padding: 36px;
}

.insights-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 26px;
}

.insights-head h3 {
    font-size: 22px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.insights-head .link-underline {
    color: var(--ink);
}

.insight-item {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid rgba(28, 33, 23, .1);
}

.insight-item .img-placeholder.thumb {
    width: 90px;
    height: 70px;
    flex-shrink: 0;
}

.insight-item .tag {
    font-family: var(--mono);
    font-size: 11px;
    color: var(--green-deep);
    margin-bottom: 6px;
    letter-spacing: .04em;
}

.insight-item h4 {
    font-size: 16px;
    color: var(--ink);
    margin-bottom: 6px;
    line-height: 1.3;
}

.insight-item .meta {
    font-size: 12.5px;
    color: #7a7363;
}

.beyond-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: stretch;
}

.beyond-copy {
    flex: 1.1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.beyond-copy h3 {
    font-size: 23px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.beyond-copy p {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.6;
}

.beyond-media {
    flex: 1;
    position: relative;
    min-height: 320px;
    border-radius: 0 28px 28px 0;
    overflow: hidden;
}

.beyond-media .arch-photo {
    border-radius: 200px 200px 0 0;
    margin: 24px 24px 0;
    height: calc(100% - 24px);
}

/* ---------- CTA ---------- */
.cta {
    margin-top: 20px;
    padding-bottom: 24px;
}

.cta-inner {
    background: var(--panel);
    border-radius: var(--radius-lg);
    padding: 64px 56px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 36px;
    position: relative;
    overflow: hidden;
}

.cta h2 {
    font-size: clamp(28px, 4vw, 40px);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.cta-right {
    max-width: 340px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.cta-right p {
    color: var(--text-dim);
    font-size: 15px;
    line-height: 1.6;
}

.cta-leaf-decor {
    position: absolute;
    right: -40px;
    bottom: -60px;
    width: 300px;
    height: 300px;
    color: rgba(169, 205, 94, .12);
    pointer-events: none;
}

/* ---------- Footer ---------- */
footer {
    padding: 50px 32px 36px;
}

.footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--line);
}

.footer-cols {
    display: flex;
    gap: 64px;
    flex-wrap: wrap;
}

.footer-cols h5 {
    font-family: var(--display);
    font-size: 14px;
    color: var(--text);
    margin-bottom: 16px;
}

.footer-cols>div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-cols a {
    font-size: 14.5px;
    color: var(--text-dim);
    transition: color .25s;
}

.footer-cols a:hover {
    color: var(--green);
}

.socials {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.socials a {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

.socials a:hover {
    background: var(--green);
    color: var(--ink);
    border-color: var(--green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 22px;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--text-dim);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ---------- Scroll reveal base state ---------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(36px);
}

/* ---------- Plant-rope custom scrollbar ---------- */
html {
    scrollbar-width: none;
}

body::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

.vine-scrollbar {
    position: fixed;
    top: 0;
    right: 8px;
    bottom: 0;
    width: 30px;
    z-index: 500;
    cursor: pointer;
}

.vine-track-svg {
    position: absolute;
    top: 0;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 18px;
    height: 100%;
    pointer-events: none;
}

.vine-track-svg path {
    fill: none;
    stroke: rgba(169, 205, 94, .25);
    stroke-width: 2.6;
    stroke-linecap: round;
}

.vine-leaf-sprout {
    position: absolute;
    left: 50%;
    width: 18px;
    height: 18px;
    color: rgba(169, 205, 94, .45);
    pointer-events: none;
}

.vine-leaf-sprout svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.4;
}

.vine-leaf-sprout.left {
    transform: translate(-125%, -50%) rotate(8deg);
}

.vine-leaf-sprout.right {
    transform: translate(25%, -50%) scaleX(-1) rotate(8deg);
}

.vine-thumb {
    position: absolute;
    top: 0;
    left: 50%;
    width: 34px;
    height: 34px;
    transform: translate(-50%, 0);
    cursor: grab;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, .5));
    z-index: 2;
    touch-action: none;
}

.vine-thumb:active {
    cursor: grabbing;
}

.vine-thumb svg {
    width: 100%;
    height: 100%;
}

.vine-thumb .leaf-body {
    fill: var(--green);
    stroke: var(--green-deep);
    stroke-width: 1;
}

.vine-thumb .leaf-vein {
    stroke: var(--ink);
    stroke-width: 1.1;
    opacity: .45;
    fill: none;
}

@media (max-width:760px) {
    .vine-scrollbar {
        display: none;
    }
}

/* ---------- Responsive ---------- */
@media (max-width:1080px) {
    .intro-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .exp-card,
    .nature-card,
    .grow-cta,
    .case-study {
        grid-column: 1;
        grid-row: auto;
    }

    .services-grid,
    .bottom-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-media {
        height: 300px;
    }

    .beyond-card {
        flex-direction: column;
    }

    .beyond-media {
        min-height: 240px;
        border-radius: 0 0 28px 28px;
    }
}

@media (max-width:760px) {
    .nav-links {
        display: none;
    }

    .hero {
        padding: 12px 16px 0;
    }

    .hero-grid {
        padding: 40px 28px;
    }

    .container {
        padding: 0 16px;
    }

    .case-stats {
        position: static;
        margin: 24px 24px 0;
        box-shadow: none;
    }

    .case-study {
        padding-bottom: 24px;
    }

    .footer-cols {
        gap: 30px;
    }
}

/* ---------- Loader ---------- */
body.is-loading {
    overflow: hidden;
}

.loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 480px;
    height: 480px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(169, 205, 94, .10), transparent 70%);
    pointer-events: none;
}

.loader-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
}

.loader-leaf {
    width: 88px;
    height: 88px;
    color: var(--green);
    animation: leafBreathe 2.6s ease-in-out infinite;
}

.loader-leaf path {
    fill: none;
}

@keyframes leafBreathe {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.045);
    }
}

.loader-word {
    font-family: var(--display);
    font-size: 13px;
    letter-spacing: .14em;
    color: var(--text-dim);
    text-transform: uppercase;
}

.loader-progress {
    font-family: var(--mono);
    font-size: 13px;
    color: var(--green);
    display: flex;
    align-items: baseline;
    gap: 1px;
}

.loader-bar-track {
    width: 200px;
    height: 3px;
    border-radius: 3px;
    background: rgba(236, 234, 224, .12);
    overflow: hidden;
}

.loader-bar-fill {
    width: 0%;
    height: 100%;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--green-deep), var(--green));
}