@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
    --ink: #17352c;
    --deep: #0f2c24;
    --sage: #dfe9df;
    --mist: #f6f7f2;
    --lime: #b6cf6d;
    --sand: #eee7d9;
    --muted: #64726c;
    --white: #fff;
    --line: #dbe3db
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    color: var(--ink);
    background: var(--mist);
    line-height: 1.55
}

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

.wrap {
    width: min(1130px, calc(100% - 40px));
    margin: auto
}

.eyebrow {
    color: #5e7624;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    padding: .84rem 1.2rem;
    border-radius: 99px;
    font-weight: 700;
    border: 1px solid transparent;
    transition: .2s;
    cursor: pointer
}

.btn:hover {
    transform: translateY(-2px)
}

.btn-primary {
    background: var(--lime);
    color: var(--deep)
}

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

.btn-outline {
    border-color: #b5c2b8;
    color: var(--ink)
}

header {
    background: #fbfcf8;
    border-bottom: 1px solid var(--line);
    position: sticky;
    top: 0;
    z-index: 10
}

.nav {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display';
    font-weight: 700;
    font-size: 1.13rem;
    line-height: 1.05
}

.brand-mark {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    background: url('assets/siliguri-grace-foundation-logo.jpeg') center / contain no-repeat
}

.brand-mark:before,
.brand-mark:after {
    display: none
}


.brand small {
    font: 600 .58rem 'DM Sans';
    letter-spacing: .12em;
    color: #77847f;
    display: block;
    text-transform: uppercase
}

.links {
    display: flex;
    align-items: center;
    gap: 23px;
    font-size: .9rem;
    font-weight: 600
}

.links a:hover,
.links a.active {
    color: #658119
}

.nav-actions {
    display: flex;
    gap: 8px
}

.menu {
    display: none;
    border: 0;
    background: none;
    font-size: 1.6rem;
    color: var(--ink)
}

.hero {
    background: var(--deep);
    color: #fff;
    overflow: hidden;
    position: relative
}

.hero:before {
    content: '';
    position: absolute;
    width: 680px;
    height: 680px;
    right: -260px;
    top: -250px;
    border: 1px solid #547469;
    border-radius: 50%;
    box-shadow: 0 0 0 55px #173d33, 0 0 0 110px #1b4439
}

.hero-grid {
    min-height: 600px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: 30px;
    position: relative
}

.hero h1,
.page-hero h1 {
    font: 700 clamp(2.65rem, 5vw, 4.7rem)/1.04 'Playfair Display';
    letter-spacing: -.04em;
    margin: 13px 0 19px
}

.hero h1 em {
    color: var(--lime);
    font-style: normal
}

.hero p {
    font-size: 1.06rem;
    max-width: 520px;
    color: #d7e3db
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 29px
}

.hero-note {
    margin-top: 32px;
    font-size: .85rem;
    color: #c9d8d0
}

.hero-art {
    height: 435px;
    position: relative
}

.sun {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: var(--lime);
    right: 50px;
    top: 36px
}

.leaf {
    position: absolute;
    border: 1px solid #a6bc79;
    width: 175px;
    height: 330px;
    border-radius: 100% 0 100% 0;
    transform: rotate(37deg);
    right: 100px;
    top: 50px
}

.art-card {
    position: absolute;
    right: 0;
    bottom: 20px;
    background: #f7f6ed;
    color: var(--ink);
    width: 230px;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 12px 30px #061c1555
}

.art-card strong {
    font: 700 2rem 'Playfair Display';
    display: block
}

.art-card span {
    font-size: .82rem;
    color: var(--muted)
}

.trust {
    background: var(--sage);
    padding: 20px 0
}

.trust .wrap {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center
}

.trust p {
    margin: 0;
    font-weight: 700;
    font-size: .91rem
}

.trust-items {
    display: flex;
    gap: 28px;
    font-size: .8rem;
    font-weight: 600;
    color: #52665c
}

.section {
    padding: 91px 0
}

.section-heading {
    max-width: 650px;
    margin-bottom: 40px
}

.section h2 {
    font: 700 clamp(2rem, 3.5vw, 3rem)/1.12 'Playfair Display';
    letter-spacing: -.03em;
    margin: 9px 0
}

.section-heading p {
    color: var(--muted);
    margin: 0
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 75px;
    align-items: center
}

.visual {
    min-height: 390px;
    background: var(--sand);
    border-radius: 130px 18px 130px 18px;
    position: relative;
    overflow: hidden
}

.visual:before {
    content: '';
    position: absolute;
    background: #a5bc75;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    bottom: -70px;
    right: -30px
}

.visual:after {
    content: 'YOU ARE\A NOT ALONE';
    white-space: pre;
    position: absolute;
    left: 38px;
    top: 45px;
    font: 700 2.6rem/1.05 'Playfair Display';
    color: var(--deep)
}

.stat {
    position: absolute;
    bottom: 39px;
    left: 38px;
    color: var(--deep);
    font-weight: 700
}

.stat b {
    display: block;
    font: 700 3rem 'Playfair Display'
}

.steps {
    display: grid;
    gap: 18px
}

.step {
    border-bottom: 1px solid var(--line);
    padding: 0 0 18px;
    display: grid;
    grid-template-columns: 45px 1fr;
    gap: 14px
}

.step-num {
    width: 33px;
    height: 33px;
    border-radius: 50%;
    background: var(--lime);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: .8rem
}

.step h3 {
    font-size: 1rem;
    margin: 3px 0
}

.step p {
    margin: 0;
    color: var(--muted);
    font-size: .91rem
}

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

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 26px
}

.icon {
    width: 43px;
    height: 43px;
    border-radius: 50%;
    background: var(--sage);
    display: grid;
    place-items: center;
    font-size: 1.25rem
}

.card h3 {
    margin: 16px 0 6px;
    font: 700 1.28rem 'Playfair Display'
}

.card p {
    color: var(--muted);
    font-size: .9rem;
    margin: 0
}

.quote {
    background: var(--sand)
}

.quote-grid {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 60px;
    align-items: start
}

.quote-mark {
    font: 700 8rem/1 'Playfair Display';
    color: #9aae6b
}

.quote blockquote {
    margin: 0;
    font: 700 clamp(1.5rem, 2.7vw, 2.25rem)/1.25 'Playfair Display';
    letter-spacing: -.025em
}

.quote cite {
    display: block;
    margin-top: 20px;
    color: var(--muted);
    font-style: normal;
    font: 600 .85rem 'DM Sans'
}

.cta {
    margin: 0 20px 74px;
    padding: 60px 30px;
    border-radius: 18px;
    text-align: center;
    background: var(--deep);
    color: white
}

.cta h2 {
    font: 700 clamp(2rem, 4vw, 3.25rem)/1.1 'Playfair Display';
    margin: 7px 0 14px
}

.cta p {
    margin: 0 auto 25px;
    max-width: 580px;
    color: #ccdad2
}

.cta .eyebrow {
    color: var(--lime)
}

footer {
    background: #0c221c;
    color: #c9d6ce;
    padding: 55px 0 25px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr .8fr;
    gap: 40px
}

.footer-grid h4 {
    font-size: .85rem;
    color: #fff
}

.footer-grid a {
    display: block;
    font-size: .87rem;
    margin: 9px 0
}

.footer-grid p {
    font-size: .87rem;
    max-width: 360px
}

.copy {
    border-top: 1px solid #335147;
    margin-top: 30px;
    padding-top: 20px;
    font-size: .76rem;
    color: #90a49a
}

.floating {
    position: fixed;
    right: 21px;
    bottom: 21px;
    z-index: 8;
    display: grid;
    gap: 9px
}

.floating a {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: white;
    font-weight: 700;
    box-shadow: 0 8px 20px #10251b44
}

.call {
    background: #193d31
}

.whatsapp {
    background: #25a868
}

.sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.page-hero {
    background: var(--deep);
    color: white;
    padding: 83px 0 92px;
    text-align: center
}

.page-hero p {
    max-width: 640px;
    margin: 0 auto;
    color: #d2dfd8
}

.content {
    max-width: 820px;
    margin: auto
}

.content h2 {
    font: 700 2rem 'Playfair Display';
    margin-top: 45px
}

.content p,
.content li {
    color: #506158
}

.content ul {
    padding-left: 20px
}

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

.faq button {
    width: 100%;
    padding: 19px 0;
    text-align: left;
    background: none;
    border: 0;
    border-bottom: 1px solid var(--line);
    font: 700 1rem 'DM Sans';
    color: var(--ink);
    display: flex;
    justify-content: space-between;
    cursor: pointer
}

.faq div {
    display: none;
    padding: 0 0 18px;
    color: var(--muted);
    font-size: .92rem
}

.faq .open div {
    display: block
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px
}

.testimonial {
    background: #fff;
    border-left: 4px solid var(--lime);
    padding: 24px;
    border-radius: 5px
}

.testimonial p {
    font: 600 1.1rem/1.5 'Playfair Display';
    margin-top: 0
}

.testimonial span {
    font-size: .8rem;
    color: var(--muted)
}

.enquiry {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 35px;
    box-shadow: 0 12px 30px #18362b0b
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.field {
    display: grid;
    gap: 7px
}

.field.full {
    grid-column: 1/-1
}

.field label {
    font-size: .82rem;
    font-weight: 700
}

.field input,
.field select,
.field textarea {
    border: 1px solid #ccd7ce;
    border-radius: 7px;
    padding: 12px;
    font: inherit;
    color: var(--ink);
    background: #fbfcf9
}

.field textarea {
    min-height: 120px;
    resize: vertical
}

.privacy {
    font-size: .78rem;
    color: var(--muted);
    margin: 18px 0
}

.form-notice {
    display: none;
    margin-top: 18px;
    padding: 13px;
    border-radius: 7px;
    background: var(--sage);
    color: var(--deep);
    font-weight: 600;
    font-size: .9rem
}

@media(max-width:800px) {

    .links,
    .nav-actions {
        display: none
    }

    .menu {
        display: block
    }

    .links.open {
        display: flex;
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #fbfcf8;
        padding: 24px
    }

    .hero-grid,
    .split {
        grid-template-columns: 1fr
    }

    .hero-grid {
        padding: 70px 0 35px
    }

    .hero-art {
        height: 250px
    }

    .sun {
        width: 190px;
        height: 190px;
        top: 0;
        right: 30px
    }

    .leaf {
        height: 250px;
        right: 60px;
        top: 0
    }

    .trust .wrap {
        display: block
    }

    .trust-items {
        margin-top: 9px;
        gap: 12px;
        flex-wrap: wrap
    }

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

    .quote-grid {
        grid-template-columns: 1fr;
        gap: 15px
    }

    .quote-mark {
        font-size: 5rem
    }

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

    .section {
        padding: 65px 0
    }

    .page-hero {
        padding: 65px 0
    }

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

@media(max-width:460px) {
    .footer-grid {
        grid-template-columns: 1fr
    }

    .visual {
        min-height: 330px
    }

    .visual:after {
        font-size: 2rem
    }

    .hero h1 {
        font-size: 2.7rem
    }

    .cta {
        margin: 0 10px 45px
    }

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

    .enquiry {
        padding: 22px
    }
}
