:root {
    --primary: #2E7D32;
    --primary-dark: #215B26;
    --secondary: #4CAF50;
    --dark: #1C1C1C;
    --light: #FAFAFA;
    --off-white: #F5F5F5;
    --gold: #D4AF37;
    --success: #66BB6A;
    --ink-soft: #5B645C;
    --line: rgba(28, 28, 28, 0.08);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 10px;
    --shadow-soft: 0 20px 60px -25px rgba(28, 60, 28, 0.35);
    --shadow-tight: 0 8px 24px -12px rgba(28, 60, 28, 0.3);
    --ease: cubic-bezier(.16, .8, .24, 1);
    --display: "Manrope", sans-serif;
    --body: "Inter", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

body {
    font-family: var(--body);
    color: var(--dark);
    background: var(--light);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

@media (max-width:380px) {
    .wrap {
        padding: 0 14px;
    }

    h1,
    h2,
    h3,
    h4 {
        letter-spacing: -0.01em;
    }
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: 16px;
}

.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

h1,
h2,
h3,
h4 {
    font-family: var(--display);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.08;
    color: var(--dark);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--body);
    font-weight: 600;
    font-size: 12.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 18px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.lede {
    font-size: 18px;
    line-height: 1.65;
    color: var(--ink-soft);
    max-width: 52ch;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 30px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    transition: transform .45s var(--ease), box-shadow .45s var(--ease), background .3s ease, color .3s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 14px 34px -12px rgba(46, 125, 50, .55);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 42px -14px rgba(46, 125, 50, .65);
}

.btn-ghost {
    background: rgba(255, 255, 255, .08);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .5);
    backdrop-filter: blur(6px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, .16);
    transform: translateY(-3px);
}

.btn-dark {
    background: var(--dark);
    color: #fff;
}

.btn-dark:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px -14px rgba(0, 0, 0, .45);
}

.btn-line {
    background: transparent;
    color: var(--dark);
    border: 1.5px solid var(--line);
}

.btn-line:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.section {
    padding: 130px 0;
}

.section-tight {
    padding: 90px 0;
}

@media (max-width:900px) {
    .section {
        padding: 88px 0;
    }

    .section-tight {
        padding: 60px 0;
    }

    .wrap {
        padding: 0 22px;
    }
}

/* ---------- reveal ---------- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .9s var(--ease), transform .9s var(--ease);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.stagger>* {
    transition-delay: calc(var(--i, 0) * 90ms);
}

/* ---------- scroll progress vine ---------- */
#progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    z-index: 999;
    transition: width .1s linear;
}

/* ---------- nav ---------- */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 90;
    padding: 22px 0;
    transition: all .5s var(--ease);
}

header.scrolled {
    padding: 14px 0;
    background: rgba(250, 250, 250, .86);
    backdrop-filter: blur(14px);
    box-shadow: 0 1px 0 var(--line);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--display);
    font-weight: 800;
    font-size: 20px;
    color: #fff;
    transition: color .5s var(--ease);
}

header.scrolled .logo {
    color: var(--dark);
}

.logo-mark {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 38px;
}

.nav-links a {
    font-size: 14.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    transition: color .3s ease;
    position: relative;
}

header.scrolled .nav-links a {
    color: var(--dark);
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width .3s var(--ease);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.nav-call {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

header.scrolled .nav-call {
    color: var(--dark);
}

.burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .15);
}

header.scrolled .burger {
    background: var(--off-white);
}

.burger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: #fff;
    position: relative;
    transition: background .3s;
}

header.scrolled .burger span {
    background: var(--dark);
}

.burger span::before,
.burger span::after {
    content: "";
    position: absolute;
    left: 0;
    width: 18px;
    height: 1.5px;
    background: inherit;
    transition: transform .3s;
}

.burger span::before {
    top: -6px;
}

.burger span::after {
    top: 6px;
}

@media (max-width:920px) {

    .nav-links,
    .nav-call {
        display: none;
    }

    .burger {
        display: flex;
    }

    .nav-cta {
        gap: 10px;
    }

    .nav-cta .btn-primary {
        display: none;
    }

    header {
        padding: 16px 0;
    }
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 120;
    display: flex;
    flex-direction: column;
    padding: 110px 34px 40px;
    transform: translateY(-100%);
    transition: transform .55s var(--ease);
}

.mobile-menu.open {
    transform: translateY(0);
}

.mobile-menu a {
    font-family: var(--display);
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.mobile-close {
    position: absolute;
    top: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

@media (max-width:480px) {
    .mobile-menu {
        padding: 100px 20px 30px;
    }

    .mobile-menu a {
        font-size: 24px;
        padding: 12px 0;
    }

    .mobile-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* ---------- hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.08);
    animation: heroZoom 18s ease-out forwards;
}

@keyframes heroZoom {
    to {
        transform: scale(1);
    }
}

.hero-scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(15, 26, 17, .55) 0%, rgba(15, 26, 17, .35) 40%, rgba(15, 26, 17, .85) 100%);
}

.leaf {
    position: absolute;
    opacity: .55;
    pointer-events: none;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, .25));
}

@media (max-width:640px) {
    .leaf {
        display: none;
    }
}

@keyframes drift {
    0% {
        transform: translate(0, -6vh) rotate(0deg);
    }

    50% {
        transform: translate(3vw, 50vh) rotate(180deg);
    }

    100% {
        transform: translate(-2vw, 106vh) rotate(360deg);
    }
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 110px;
    padding-bottom: 96px;
}

@media (max-width:640px) {
    .hero-inner {
        padding-bottom: 60px;
    }

    .hero-tag {
        font-size: 12px;
        padding: 7px 14px;
        margin-bottom: 18px;
    }

    .hero .lede {
        font-size: 16px;
        margin-top: 16px;
        max-width: 100%;
    }

    .hero-actions {
        margin-top: 28px;
        gap: 12px;
    }

    .hero-actions .btn {
        padding: 13px 24px;
        font-size: 14px;
        flex: 1;
        justify-content: center;
    }

    .hero-foot {
        margin-top: 40px;
        gap: 16px;
    }

    .trust-badge {
        padding: 10px 14px;
        gap: 10px;
        flex: 1;
        justify-content: center;
    }

    .trust-badge .tb-text {
        font-size: 12px;
    }

    .trust-badge strong {
        font-size: 13px;
    }

    .scroll-cue {
        display: none;
    }
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    border-radius: 100px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .28);
    backdrop-filter: blur(8px);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    margin-bottom: 26px;
}

.hero-tag .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 4px rgba(102, 187, 106, .25);
}

.hero h1 {
    font-size: clamp(40px, 6.4vw, 86px);
    max-width: 15ch;
    color: #fff;
}

.hero h1 em {
    font-style: normal;
    color: var(--gold);
}

.hero .lede {
    color: rgba(255, 255, 255, .82);
    font-size: 19px;
    margin-top: 24px;
    max-width: 48ch;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 42px;
}

.hero-foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 70px;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(10px);
}

.stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 2px;
}

.trust-badge .tb-text {
    font-size: 13px;
    line-height: 1.4;
    color: rgba(255, 255, 255, .85);
}

.trust-badge strong {
    color: #fff;
    display: block;
    font-family: var(--display);
    font-size: 14px;
}

.scroll-cue {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
}

.scroll-cue .line {
    width: 1px;
    height: 44px;
    background: linear-gradient(180deg, rgba(255, 255, 255, .8), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-cue .line::after {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--gold);
    animation: cue 2.2s ease-in-out infinite;
}

@keyframes cue {
    0% {
        top: -20px;
    }

    100% {
        top: 44px;
    }
}

/* ---------- marquee ---------- */
.marquee-section {
    padding: 34px 0;
    background: var(--dark);
    overflow: hidden;
}

@media (max-width:640px) {
    .marquee-section {
        padding: 24px 0;
    }
}

.marquee-label {
    color: rgba(255, 255, 255, .45);
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 20px;
}

.marquee-track {
    display: flex;
    gap: 70px;
    width: max-content;
    animation: scroll 32s linear infinite;
}

@media (max-width:640px) {
    .marquee-track {
        gap: 40px;
    }

    .marquee-track span {
        font-size: 16px;
    }

    .marquee-label {
        font-size: 10px;
        margin-bottom: 14px;
    }
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.marquee-track span {
    font-family: var(--display);
    font-weight: 700;
    font-size: 22px;
    color: rgba(255, 255, 255, .35);
    white-space: nowrap;
}

/* ---------- stats ---------- */
.stats {
    background: linear-gradient(160deg, #173319 0%, #1F4D2C 55%, #24592d 100%);
    color: #fff;
    position: relative;
}

.stats::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .06;
    background-image: radial-gradient(circle at 20% 20%, #fff 0, transparent 45%), radial-gradient(circle at 85% 75%, #fff 0, transparent 40%);
}

.stats-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

@media (max-width:800px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 48px;
    }
}

.stat-item {
    text-align: left;
    border-left: 2px solid rgba(255, 255, 255, .18);
    padding-left: 22px;
}

.stat-num {
    font-family: var(--display);
    font-weight: 800;
    font-size: clamp(34px, 4.2vw, 54px);
    background: linear-gradient(90deg, #fff, #cfe9d1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.stat-label {
    font-size: 14.5px;
    color: rgba(255, 255, 255, .72);
    margin-top: 6px;
}

@media (max-width:800px) {
    .stat-item {
        padding-left: 16px;
    }

    .stat-label {
        font-size: 13px;
    }
}

/* ---------- section heads ---------- */
.head-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

@media (max-width:640px) {
    .head-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 40px;
    }

    .head-row .lede {
        font-size: 16px;
        max-width: 100%;
    }
}

.head-row h2 {
    font-size: clamp(30px, 3.6vw, 48px);
    max-width: 14ch;
}

/* ---------- services ---------- */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

@media (max-width:1100px) {
    .svc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width:600px) {
    .svc-grid {
        grid-template-columns: 1fr;
    }
}

.svc-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 320px;
    isolation: isolate;
    box-shadow: var(--shadow-tight);
}

@media (max-width:600px) {
    .svc-card {
        height: 260px;
    }

    .svc-card-body {
        padding: 16px;
    }

    .svc-card h3 {
        font-size: 17px;
    }

    .svc-card p {
        font-size: 12.5px;
    }

    .svc-num {
        font-size: 11px;
    }
}

.svc-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease), filter .8s var(--ease);
    z-index: -2;
}

.svc-card:hover img {
    transform: scale(1.09);
}

.svc-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(20, 30, 20, .1) 0%, rgba(15, 20, 15, .88) 100%);
}

.svc-card-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 24px;
    color: #fff;
}

.svc-num {
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
    letter-spacing: .1em;
    margin-bottom: 10px;
    display: block;
}

.svc-card h3 {
    font-size: 19px;
    color: #fff;
    margin-bottom: 8px;
}

.svc-card p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .75);
    line-height: 1.5;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height .5s var(--ease), opacity .5s var(--ease), margin .5s var(--ease);
}

.svc-card:hover p {
    max-height: 80px;
    opacity: 1;
    margin-top: 2px;
}

.svc-learn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    margin-top: 12px;
    opacity: 0;
    transform: translateY(6px);
    transition: all .4s var(--ease);
}

.svc-card:hover .svc-learn {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- why choose ---------- */
.why {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 80px;
    align-items: center;
}

@media (max-width:900px) {
    .why {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

.why-media {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.why-media img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

@media (max-width:900px) {
    .why-media img {
        height: 360px;
    }

    .why-badge {
        bottom: 16px;
        left: 16px;
        padding: 12px 16px;
    }

    .why-badge .num {
        font-size: 22px;
    }

    .why-badge .txt {
        font-size: 11px;
        max-width: 90px;
    }

    .why-list {
        margin-top: 24px;
        gap: 16px;
    }

    .why-item strong {
        font-size: 14px;
    }

    .why-item span {
        font-size: 12.5px;
    }
}

.why-badge {
    position: absolute;
    bottom: 26px;
    left: 26px;
    background: #fff;
    border-radius: 18px;
    padding: 18px 22px;
    box-shadow: var(--shadow-tight);
    display: flex;
    align-items: center;
    gap: 14px;
}

.why-badge .num {
    font-family: var(--display);
    font-weight: 800;
    font-size: 28px;
    color: var(--primary);
}

.why-badge .txt {
    font-size: 12.5px;
    color: var(--ink-soft);
    line-height: 1.3;
    max-width: 110px;
}

.why-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px 28px;
    margin-top: 34px;
}

@media (max-width:520px) {
    .why-list {
        grid-template-columns: 1fr;
    }
}

.why-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.check {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(46, 125, 50, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.why-item strong {
    display: block;
    font-size: 15px;
    margin-bottom: 3px;
}

.why-item span {
    font-size: 13.5px;
    color: var(--ink-soft);
}

/* ---------- portfolio ---------- */
.filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

@media (max-width:640px) {
    .filters {
        gap: 8px;
        margin-bottom: 28px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

.filter-btn {
    padding: 11px 22px;
    border-radius: 100px;
    border: 1.5px solid var(--line);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--ink-soft);
    transition: all .3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--dark);
    color: #fff;
    border-color: var(--dark);
}

.masonry {
    columns: 4 290px;
    column-gap: 20px;
}

@media (max-width:1000px) {
    .masonry {
        columns: 3 250px;
    }
}

@media (max-width:640px) {
    .masonry {
        columns: 1 100%;
    }
}

@media (max-width:480px) {
    .masonry {
        columns: 1 100%;
    }
}

.m-item {
    break-inside: avoid;
    margin-bottom: 18px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-tight);
    cursor: pointer;
}

.m-item img {
    width: 100%;
    display: block;
    transition: transform .7s var(--ease);
}

.m-item:hover img {
    transform: scale(1.06);
}

.m-tag {
    position: absolute;
    left: 14px;
    bottom: 14px;
    color: #fff;
    z-index: 2;
}

.m-tag b {
    display: block;
    font-family: var(--display);
    font-size: 15px;
}

.m-tag span {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .75);
}

.m-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .72));
}

@media (max-width:640px) {
    .m-item {
        margin-bottom: 14px;
        border-radius: 12px;
    }

    .m-tag {
        left: 10px;
        bottom: 10px;
    }

    .m-tag b {
        font-size: 13px;
    }

    .m-tag span {
        font-size: 10.5px;
    }
}

.m-item[data-cat] {
    display: block;
}

.m-item.hide {
    display: none;
}

/* ---------- before / after ---------- */
.ba-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    position: relative;
    max-width: 920px;
    margin: 0 auto;
}

.ba {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    user-select: none;
}

.ba img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ba .after-img {
    clip-path: inset(0 0 0 50%);
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 0;
    transform: translateX(-1px);
}

.ba-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 3px;
    background: #fff;
    box-shadow: 0 0 0 100vh rgba(0, 0, 0, 0);
}

.ba-knob {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-tight);
    color: var(--dark);
}

.ba-range {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
}

.ba-label {
    position: absolute;
    top: 20px;
    padding: 7px 15px;
    border-radius: 100px;
    background: rgba(0, 0, 0, .55);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    backdrop-filter: blur(6px);
}

.ba-label.before {
    left: 20px;
}

.ba-label.after {
    right: 20px;
}

@media (max-width:640px) {
    .ba-wrap {
        border-radius: var(--radius-md);
    }

    .ba-knob {
        width: 40px;
        height: 40px;
    }

    .ba-knob svg {
        width: 14px;
        height: 14px;
    }

    .ba-label {
        font-size: 10px;
        padding: 5px 10px;
        top: 12px;
    }

    .ba-label.before {
        left: 12px;
    }

    .ba-label.after {
        right: 12px;
    }
}

/* ---------- process (vine) ---------- */
.process-wrap {
    position: relative;
}

.vine-svg {
    position: absolute;
    left: 29px;
    top: 0;
    bottom: 0;
    width: 3px;
    height: 100%;
}

@media (max-width:700px) {
    .vine-svg {
        left: 23px;
    }
}

.vine-path {
    fill: none;
    stroke: var(--line);
    stroke-width: 3;
}

.vine-fill {
    fill: none;
    stroke: url(#vineGrad);
    stroke-width: 3;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
    transition: stroke-dashoffset .1s linear;
}

.proc-step {
    display: flex;
    gap: 30px;
    padding: 34px 0;
    position: relative;
}

.proc-dot {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-weight: 800;
    color: var(--ink-soft);
    z-index: 2;
    transition: all .5s ease;
}

.proc-step.on .proc-dot {
    border-color: var(--primary);
    color: var(--primary);
    background: #eaf5ea;
}

.proc-step h3 {
    font-size: 19px;
    margin-bottom: 6px;
}

.proc-step p {
    font-size: 14.5px;
    color: var(--ink-soft);
    max-width: 52ch;
    line-height: 1.6;
}

@media (max-width:700px) {
    .proc-step {
        gap: 20px;
        padding: 24px 0;
    }

    .proc-dot {
        width: 44px;
        height: 44px;
        font-size: 14px;
    }

    .proc-step h3 {
        font-size: 17px;
    }

    .proc-step p {
        font-size: 13.5px;
        max-width: 100%;
    }
}

/* ---------- testimonials ---------- */
.tst-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

@media (max-width:900px) {
    .tst-grid {
        grid-template-columns: 1fr;
    }
}

.tst-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 34px;
    box-shadow: var(--shadow-tight);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

@media (max-width:900px) {
    .tst-card {
        padding: 24px;
        gap: 14px;
    }

    .tst-card p {
        font-size: 14.5px;
    }

    .tst-who strong {
        font-size: 13px;
    }

    .tst-who span {
        font-size: 11.5px;
    }
}

.tst-stars {
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 2px;
}

.tst-card p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #333;
}

.tst-who {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-weight: 700;
    color: #fff;
    font-size: 15px;
}

.tst-who strong {
    display: block;
    font-size: 14px;
}

.tst-who span {
    font-size: 12.5px;
    color: var(--ink-soft);
}

/* ---------- areas ---------- */
.areas {
    background: var(--off-white);
}

.areas-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
}

@media (max-width:900px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }
}

.area-map {
    position: relative;
    aspect-ratio: 4/3.4;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    overflow: hidden;
    box-shadow: var(--shadow-tight);
}

.area-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 6px rgba(46, 125, 50, .16);
}

.area-dot::after {
    content: "";
    position: absolute;
    inset: -14px;
    border-radius: 50%;
    border: 1.5px solid var(--primary);
    opacity: 0;
    animation: ping 2.6s ease-out infinite;
}

@keyframes ping {
    0% {
        transform: scale(.4);
        opacity: .6;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.area-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 28px;
    margin-top: 30px;
}

.area-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px dashed var(--line);
}

.area-list li svg {
    color: var(--primary);
    flex-shrink: 0;
}

@media (max-width:640px) {
    .area-list {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 20px;
    }

    .area-list li {
        font-size: 14px;
        padding: 8px 0;
    }

    .area-map {
        aspect-ratio: 4/3;
    }
}

/* ---------- faq ---------- */
.faq-wrap {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--line);
}

.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 26px 4px;
    font-family: var(--display);
    font-weight: 700;
    font-size: 17px;
    text-align: left;
    color: var(--dark);
}

.faq-plus {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    position: relative;
    margin-left: 20px;
}

.faq-plus::before,
.faq-plus::after {
    content: "";
    position: absolute;
    background: var(--primary);
    top: 50%;
    left: 50%;
}

.faq-plus::before {
    width: 14px;
    height: 2px;
    transform: translate(-50%, -50%);
}

.faq-plus::after {
    width: 2px;
    height: 14px;
    transform: translate(-50%, -50%);
    transition: transform .35s var(--ease);
}

.faq-item.open .faq-plus::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .5s var(--ease);
}

.faq-a p {
    padding: 0 4px 26px;
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.7;
    max-width: 66ch;
}

@media (max-width:640px) {
    .faq-q {
        padding: 18px 2px;
        font-size: 15px;
    }

    .faq-plus {
        margin-left: 12px;
    }

    .faq-a p {
        padding: 0 2px 20px;
        font-size: 14px;
    }
}

/* ---------- cta ---------- */
.cta {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 0 32px;
    isolation: isolate;
}

@media (max-width:640px) {
    .cta {
        margin: 0 16px;
    }
}

.cta img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.cta::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(120deg, rgba(15, 26, 17, .92) 20%, rgba(30, 50, 20, .55) 100%);
}

.cta-in {
    padding: 110px 60px;
    color: #fff;
    max-width: 640px;
}

@media (max-width:640px) {
    .cta-in {
        padding: 70px 28px;
    }
}

.cta-in h2 {
    color: #fff;
    font-size: clamp(30px, 4vw, 48px);
    margin-bottom: 20px;
}

.cta-in p {
    color: rgba(255, 255, 255, .8);
    font-size: 17px;
    margin-bottom: 36px;
    max-width: 46ch;
}

.cta-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

@media (max-width:640px) {
    .cta-actions .btn {
        flex: 1;
        justify-content: center;
        padding: 13px 20px;
        font-size: 14px;
    }
}

/* ---------- contact ---------- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

@media (max-width:900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.field {
    margin-bottom: 18px;
}

.field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark);
}

.field input,
.field select,
.field textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1.5px solid var(--line);
    background: #fff;
    transition: border-color .25s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

@media (max-width:480px) {
    .field-row {
        grid-template-columns: 1fr;
    }
}

.info-card {
    background: var(--dark);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 44px;
    height: 100%;
}

@media (max-width:900px) {
    .info-card {
        padding: 28px;
    }

    .info-row {
        padding: 14px 0;
        gap: 12px;
    }

    .info-ic {
        width: 36px;
        height: 36px;
    }

    .info-row strong {
        font-size: 13px;
    }

    .info-row span {
        font-size: 12.5px;
    }

    .field input,
    .field select,
    .field textarea {
        padding: 12px 14px;
    }

    .field label {
        font-size: 12px;
    }
}

.info-row {
    display: flex;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.info-row:last-child {
    border: none;
}

.info-ic {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(76, 175, 80, .18);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-row strong {
    display: block;
    font-size: 14px;
    margin-bottom: 3px;
}

.info-row span {
    font-size: 13.5px;
    color: rgba(255, 255, 255, .65);
}

.form-success {
    display: none;
    text-align: center;
    padding: 50px 20px;
}

.form-success.show {
    display: block;
}

.site-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: min(360px, calc(100vw - 32px));
    padding: 16px 18px;
    border: 1px solid rgba(212, 175, 55, .45);
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 18px 45px rgba(27, 57, 37, .22);
    color: var(--dark);
    opacity: 0;
    transform: translateY(18px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
}

.site-toast.show {
    opacity: 1;
    transform: translateY(0);
}

.site-toast.error {
    border-color: #b85c4a;
}

.site-toast-mark {
    color: var(--primary);
    font-size: 20px;
    line-height: 1;
}

.site-toast.error .site-toast-mark {
    color: #b85c4a;
}

.site-toast strong {
    display: block;
    margin-bottom: 3px;
    font-size: 14px;
}

.site-toast span {
    color: var(--ink-soft);
    font-size: 13px;
    line-height: 1.45;
}

.form-success svg {
    color: var(--primary);
    margin-bottom: 16px;
}

/* ---------- footer ---------- */
footer {
    background: #141914;
    color: rgba(255, 255, 255, .7);
    padding: 90px 0 30px;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 50px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

@media (max-width:800px) {
    .foot-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 40px;
    }
}

.foot-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--display);
    font-weight: 800;
    font-size: 20px;
    color: #fff;
    margin-bottom: 16px;
}

footer h4 {
    font-family: var(--display);
    font-size: 13px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
}

footer ul li {
    margin-bottom: 12px;
    font-size: 14.5px;
}

footer ul li a:hover {
    color: var(--secondary);
}

.foot-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.foot-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .3s;
}

.foot-social a:hover {
    background: var(--primary);
}

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 26px;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 12px;
}

.foot-bottom a {
    margin-left: 22px;
}

@media (max-width:800px) {
    footer {
        padding: 60px 0 24px;
    }

    .foot-grid {
        row-gap: 32px;
        padding-bottom: 40px;
    }

    footer h4 {
        font-size: 12px;
        margin-bottom: 14px;
    }

    footer ul li {
        font-size: 13.5px;
        margin-bottom: 10px;
    }

    .foot-social {
        margin-top: 14px;
    }

    .foot-social a {
        width: 34px;
        height: 34px;
    }

    .foot-bottom {
        padding-top: 20px;
        font-size: 12px;
    }

    .foot-bottom a {
        margin-left: 14px;
    }
}

@media (max-width:480px) {
    .foot-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .foot-social {
        justify-content: center;
    }

    .foot-bottom {
        justify-content: center;
        text-align: center;
    }

    .foot-bottom a {
        margin: 0 10px;
    }

    footer form {
        flex-direction: column;
    }

    footer input {
        width: 100%;
        box-sizing: border-box;
    }
}

/* ---------- sticky mobile cta ---------- */
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 80;
    display: none;
    background: #fff;
    box-shadow: 0 -8px 30px rgba(0, 0, 0, .1);
    padding: 10px 14px;
    gap: 8px;
}

.mobile-cta a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 10px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
}

.mobile-cta .mc-call {
    background: var(--dark);
    color: #fff;
}

.mobile-cta .mc-wa {
    background: #25D366;
    color: #fff;
}

@media (max-width:720px) {
    .mobile-cta {
        display: flex;
    }

    body {
        padding-bottom: 68px;
    }
}

@media (max-width:400px) {
    .mobile-cta {
        padding: 8px 10px;
        gap: 6px;
    }

    .mobile-cta a {
        padding: 10px 8px;
        font-size: 12px;
        gap: 4px;
    }

    .mobile-cta .mc-call svg,
    .mobile-cta .mc-wa svg {
        width: 13px;
        height: 13px;
    }
}

::selection {
    background: var(--gold);
    color: #1c1c1c;
}

/* ---------- lightbox ---------- */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, .7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    backdrop-filter: blur(2px);
}

.lightbox.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-img {
    max-width: 75vw;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
    transition: transform .3s ease;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, .2);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .1);
    color: #fff;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s ease, transform .2s ease;
    z-index: 10;
    backdrop-filter: blur(4px);
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, .2);
    transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-caption {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    text-align: center;
    padding: 12px 24px;
    background: rgba(0, 0, 0, .5);
    border-radius: 12px;
    backdrop-filter: blur(8px);
    max-width: 80%;
}

.lightbox-caption strong {
    display: block;
    font-family: var(--display);
    font-size: 16px;
    margin-bottom: 4px;
}

.lightbox-caption span {
    font-size: 13px;
    color: rgba(255, 255, 255, .7);
}

@media (max-width:768px) {

    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
        font-size: 28px;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .lightbox-img {
        max-width: 85vw;
        max-height: 60vh;
    }

    .lightbox-caption {
        bottom: 16px;
        padding: 10px 16px;
        max-width: 90%;
    }

    .lightbox-caption strong {
        font-size: 14px;
    }

    .lightbox-caption span {
        font-size: 12px;
    }
}

@media (max-width:480px) {

    .lightbox-prev,
    .lightbox-next {
        width: 38px;
        height: 38px;
        font-size: 22px;
    }

    .lightbox-prev {
        left: 6px;
    }

    .lightbox-next {
        right: 6px;
    }

    .lightbox-img {
        max-width: 100vw;
        max-height: 65vh;
        border-radius: 4px;
    }
}