@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&display=swap');

:root {
    --mint-50:  #efffeb;
    --mint-100: #e7f3d5;
    --mint-200: #d9ecc0;
    --mint-300: #bfdea0;
    --leaf:     #8DC574;
    --leaf-600: #6fae36;
    --leaf-700: #547d2b;
    --forest:   #2f5233;
    --forest-900: #1d3621;
    --ink:      #1a1f1b;
    --ink-70:   rgba(26,31,27,0.70);
    --ink-50:   rgba(26,31,27,0.50);
    --paper:    #ffffff;
    --line:     rgba(26,31,27,0.10);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --shadow-1: 0 6px 24px rgba(47,82,51,0.08);
    --shadow-2: 0 20px 60px rgba(47,82,51,0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background: var(--mint-100);
    line-height: 1.55;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }

.container {
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ================= BRAND ================= */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--leaf-600);
}
.footer-brand{
    width: 200px;
}
.brand__mark { width: 34px; height: 34px; flex: none; }
.brand__text {
    display: inline-flex;
    flex-direction: column;
    line-height: 1;
    font-family: 'Manrope', sans-serif;
    letter-spacing: .18em;
}
.brand__text strong {
    font-weight: 700;
    font-size: 13px;
    color: var(--leaf-600);
}
.brand__text em {
    font-style: normal;
    font-size: 9px;
    letter-spacing: .5em;
    color: var(--leaf-700);
    margin-top: 4px;
    opacity: .85;
}
.brand--lg .brand__mark { width: 52px; height: 52px; }
.brand--lg .brand__text strong { font-size: 20px; }
.brand--lg .brand__text em { font-size: 12px; letter-spacing: .6em; }

/* ================= NAV ================= */
.nav {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(16px);
    background: rgba(231,243,213,0.75);
    border-bottom: 1px solid rgba(47,82,51,0.08);
}
.logo{
    width: 180px;
}
.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    gap: 24px;
}
.nav__menu {
    display: flex;
    gap: 42px;
    margin-left: auto;
    /* margin-right: 24px; */
}
.nav__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-70);
    position: relative;
    padding: 6px 0;
}
.nav__link.is-active,
.nav__link:hover { color: var(--forest); }
.nav__link::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--leaf);
    transition: width .25s ease;
}
.nav__link:hover::after,
.nav__link.is-active::after { width: 100%; }
.nav__toggle { display: none; }

/* ================= BUTTONS ================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .02em;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn--primary {
    background: var(--leaf);
    color: #fff;
    box-shadow: 0 10px 24px rgba(138,192,76,0.35);
}
.btn--primary:hover {
    background: var(--leaf-600);
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(138,192,76,0.45);
}
.btn--pill {
    background: var(--leaf);
    color: #fff;
    padding: 10px 28px;
    font-size: 13px;
}
.btn--pill:hover { background: var(--leaf-600); }

/* ================= HERO ================= */
.hero {
    position: relative;
    overflow-x: clip;
    padding: 70px 0 100px;
}
.hero__blob {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 85%;
    z-index: 0;
}
.hero__blob img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-bottom-left-radius: 75px;
}
.hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
}
.eyebrow {
    font-size: 12px;
    letter-spacing: .3em;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--ink-50);
    margin: 0 0 22px;
}
.hero__slide { display: none; animation: fadeSlide .6s ease; }
.hero__slide.is-active { display: block; }
@keyframes fadeSlide {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero__title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(52px, 7vw, 104px);
    line-height: .95;
    letter-spacing: -.01em;
    margin: 0 0 22px;
    color: var(--ink);
}
.hero__title .ital {
    font-style: italic;
    font-weight: 400;
    color: var(--forest);
}
.hero__sub {
    max-width: 440px;
    font-size: 15px;
    color: var(--ink-70);
    margin: 0 0 32px;
}
.hero__dots {
    display: flex;
    gap: 10px;
    margin-top: 36px;
}
.dot {
    width: 32px;
    height: 6px;
    border-radius: 999px;
    background: rgba(47,82,51,0.18);
    transition: background .2s ease, width .25s ease;
}
.dot.is-active { background: var(--leaf); width: 44px; }
.dot:hover { background: var(--leaf-600); }

.hero__visual {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
}
.hero__image-frame {
    position: relative;
    width: 100%;
    z-index: 1;
}
.hero__image-frame img {
    width: 100%;
    height: auto;
    transform: translate(35px, 70px);
    display: block;
}

.hero__plus:hover { transform: rotate(90deg); }
.hero__badge {
    position: absolute;
    left: -40px; bottom: -100px;
    width: 150px; height: 150px;
    animation: spin 20s linear infinite;
}
.hero__badge svg { width: 100%; height: 100%;

}
.hero__badge-core {
    position: absolute;
    inset: 28%;
    display: grid; place-items: center;
    border-radius: 50%;
    /* background: var(--forest); */
    color: #1DA09A;
    font-size: 22px;
    animation: spin 20s linear infinite reverse;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ================= MARQUEE ================= */
.marquee {
    background: var(--forest-900);
    color: var(--mint-200);
    overflow: hidden;
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.marquee__track {
    display: flex;
    gap: 56px;
    align-items: center;
    white-space: nowrap;
    animation: scroll 40s linear infinite;
    font-size: 13px;
    letter-spacing: .3em;
    font-weight: 500;
    text-transform: uppercase;
}
.marquee__track em {
    font-style: normal;
    color: var(--leaf);
    font-size: 10px;
}
@keyframes scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ================= PURPOSE ================= */
.purpose {
    position: relative;
    padding: 110px 0 90px;
    overflow: hidden;
}
.dna {
    position: absolute;
    /* opacity: 0.12; */
    width: 100px;
    overflow: visible;
}
.dna--left { top: -3px; left: 0px; }
.section-eyebrow {
    font-size: 11px;
    letter-spacing: .4em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--leaf-700);
    margin: 0 0 18px;
    text-align: center;
}
.purpose__title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: clamp(28px, 3vw, 42px);
    line-height: 1.25;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 64px;
    color: #000;
}
.purpose__title em {
    font-style: italic;
    color: var(--forest);
}

.cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}
.card {
    background: var(--paper);
    border-radius: var(--radius-md);
    padding: 36px 26px;
    text-align: center;
    transition: transform .3s ease, box-shadow .3s ease;
    box-shadow: var(--shadow-1);
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2);
}
.card__icon {
    width: 50%; height: 50%;
    border-radius: var(--radius-sm);
    margin: 0 auto 22px;
    display: grid; place-items: center;
    padding: 18px;
}
.card__icon img { width: 100%; height: 100%; object-fit: contain; }

.card__title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 22px;
    margin: 0 0 12px;
}
.card__text {
    font-size: 13px;
    color: var(--ink-70);
    margin: 0;
    line-height: 1.6;
}

/* ================= STANDARD / COLLAGE ================= */
.standard { padding: 60px 0 110px; overflow-x: clip; }
.standard__grid {
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 60px;
    align-items: center;
}
.standard__text .section-eyebrow { text-align: left; }
.standard__title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(40px, 5vw, 68px);
    line-height: 1.05;
    margin: 0 0 24px;
}
.standard__title em { font-style: italic; color: var(--forest); }
.standard__desc {
    font-size: 15px;
    color: var(--ink-70);
    max-width: 440px;
    margin: 0 0 32px;
}

.standard__logo {
    display: block;
    max-width: 320px;
    margin-top: 60px;
}

.collage {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
    position: relative;
    right: -200px;
}
.collage__cell {
    overflow: hidden;
    transition: transform .4s ease;
}
.collage__cell--1 {
    height: 300px;
    border-radius: 30px;
    align-self: end;
}
.collage__cell--2 {
    height: 400px;
    border-radius: 40px 0 0 40px;
    
}
.collage__cell--3 {
    height: 300px;
    border-radius: 30px;
    align-self: start;
}
.collage__cell--4 {
    height: 400px;
    border-radius: 40px 0 0 40px;
}
.collage__cell:hover { transform: scale(1.02); }
.collage__cell img { width: 100%; height: 100%; object-fit: contain; }

/* ================= BRAND DIVIDER ================= */
.brand-divider {
    text-align: center;
    padding: 40px 0 60px;
}

/* ================= GALLERY ================= */
.gallery { padding: 40px 0 120px; }
.gallery__title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(40px, 5vw, 64px);
    text-align: center;
    margin: 0 0 50px;
}
.gallery__title em { font-style: italic; color: var(--forest); }
.gallery__wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
}
.gallery__track {
    display: flex;
    gap: 22px;
    overflow: hidden;
    scroll-behavior: smooth;
    flex: 1;
}
.gallery__item {
    flex: 0 0 calc((100% - 44px) / 3);
    aspect-ratio: 1/1;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-1);
    transition: transform .4s ease;
}
.gallery__item:hover { transform: translateY(-4px); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; }
.gallery__arrow {
    width: 42px; height: 62px;
    border-radius: 10px;
    background: var(--leaf);
    color: #fff;
    display: grid; place-items: center;
    transition: background .2s ease, transform .2s ease;
    flex: none;
}
.gallery__arrow:hover { background: var(--leaf-600); transform: scale(1.05); }

/* ================= TESTIMONIALS ================= */
.testimonials { padding: 40px 0 100px; }
.testimonials__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 54px;
    gap: 40px;
    flex-wrap: wrap;
}
.testimonials__head .section-eyebrow { text-align: left; }
.testimonials__title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: clamp(36px, 4vw, 54px);
    margin: 0;
    line-height: 1.05;
}
.testimonials__title em { font-style: italic; color: var(--forest); }
.stat { text-align: right; }
.stat__num {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(60px, 7vw, 96px);
    font-weight: 500;
    color: var(--forest);
    line-height: 1;
    display: block;
}
.stat__label {
    display: block;
    font-size: 12px;
    color: var(--ink-70);
    margin-top: 8px;
    letter-spacing: .05em;
}
.reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.review {
    background: var(--paper);
    border-radius: var(--radius-md);
    padding: 28px 26px;
    box-shadow: var(--shadow-1);
    transition: transform .3s ease, box-shadow .3s ease;
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.review__stars { color: #f3b84a; font-size: 13px; margin-bottom: 14px; letter-spacing: 2px; }
.review__text { font-size: 14px; color: var(--ink-70); line-height: 1.7; margin: 0 0 20px; }
.review__who { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--line); padding-top: 14px; }
.review__who img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.review__who strong { display: block; font-size: 13px; color: var(--ink); font-weight: 600; }
.review__who span { font-size: 11px; color: var(--ink-50); }

/* ================= FOOTER ================= */
.footer {
    background: var(--mint-50);
    padding: 80px 0 24px;
    border-top: 1px solid var(--line);
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 48px;
    margin-bottom: 60px;
}
.footer__desc { color: var(--ink-70); font-size: 13px; max-width: 320px; margin: 22px 0; line-height: 1.7; }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--leaf);
    color: #fff;
    display: grid; place-items: center;
    font-size: 13px;
    transition: background .2s ease, transform .2s ease;
}
.footer__social a:hover { background: var(--leaf-600); transform: translateY(-2px); }
.footer__col h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    margin: 0 0 22px;
    color: var(--forest);
}
.footer__col a {
    display: block;
    font-size: 13px;
    color: var(--ink-70);
    padding: 7px 0;
    transition: color .2s ease, padding .2s ease;
}
.footer__col a:hover { color: var(--leaf-600); padding-left: 4px; }
.footer__col p {
    font-size: 13px;
    color: var(--ink-70);
    margin: 0 0 10px;
    line-height: 1.6;
}
.footer__col p strong { color: var(--ink); font-weight: 600; }

.footer__bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    font-size: 12px;
    color: var(--ink-50);
    flex-wrap: wrap;
    gap: 10px;
}
.footer__legal a:hover { color: var(--leaf-600); }

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .hero__grid { grid-template-columns: 1fr; }
    .hero__visual { min-height: 460px; }
    .cards { grid-template-columns: repeat(2, 1fr); }
    .standard__grid { grid-template-columns: 1fr; }
    .reviews { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .gallery__item { flex: 0 0 calc((100% - 22px) / 2); }
}
@media (max-width: 640px) {
    .nav__menu {
        position: fixed;
        inset: 72px 0 auto 0;
        background: var(--mint-100);
        flex-direction: column;
        padding: 24px;
        gap: 18px;
        transform: translateY(-120%);
        transition: transform .3s ease;
        /* border-bottom: 1px solid var(--line); */
    }
    .nav__menu.is-open { transform: translateY(0); }
    .nav__toggle {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding: 8px;
    }
    .nav__toggle span {
        width: 22px; height: 2px;
        background: var(--forest);
        display: block;
    }
    .cards { grid-template-columns: 1fr; }
    
    .marquee__track { animation-duration: 15s; }

    .hero__blob {
        width: 100%;
        height: 80%;
        top: 10%;
    }
    .hero__blob img {
        border-radius: 30px;
    }
    .hero__image-frame img {
        transform: translate(0, -20px);
        margin: 0 auto;
    }

    .collage { 
        margin-right: 0;
        grid-template-rows: auto auto;
        gap: 12px;
        position: inherit;
    }
    .standard__logo{
        width: 150px;
    }
    .collage__cell--1, .collage__cell--3 {
        height: 150px;
        border-radius: 20px;
    }
    .collage__cell--2, .collage__cell--4 {
        height: 200px;
        border-radius: 20px;
    }
.brand-divider{
    padding-top: 0;
}
.standard{
    padding-bottom: 0;
}
.hero__badge {
    display: none;
}
    .testimonials__head { flex-direction: column; align-items: flex-start; }
    .stat { text-align: left; }
    .footer__grid { grid-template-columns: 1fr; }
    .gallery__item { flex: 0 0 100%; }
    .hero__badge { left: auto; right: 10px; bottom: -40px; width: 110px; height: 110px; }
}