    :root {
        --green-dark: #1a5c1a;
        --green-mid: #2e7d32;
        --green-bright: #43a047;
        --lime: #c8e6a0;
        --lime-light: #e8f5c8;
        --white: #ffffff;
        --off-white: #f4f9ee;
        --ink: #0e1a0e;
        --ink-soft: #2d402d;
        --font-display: 'Bebas Neue', sans-serif;
        --font-body: 'DM Sans', sans-serif;
        --font-serif: 'Libre Baskerville', serif;
        --nav-h: 70px;
        --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

    }

    *,
    *::before,
    *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    html {
        scroll-behavior: smooth;
        background: var(--ink);
    }

    body {
        font-family: var(--font-body);
        background: var(--white);
        color: var(--ink);
        overflow-x: hidden;
    }

    img {
        display: block;
        max-width: 100%;
    }

    a {
        text-decoration: none;
        color: inherit;
    }


    ul {
        list-style: none;
    }

    ::-webkit-scrollbar {
        width: 6px;
    }

    ::-webkit-scrollbar-track {
        background: var(--lime-light);
    }

    ::-webkit-scrollbar-thumb {
        background: var(--green-mid);
        border-radius: 3px;
    }

    /* NAV */
    #navbar {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        height: var(--nav-h);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 5%;
        background: transparent;
        transition: background var(--transition), box-shadow var(--transition);
    }

    #navbar.scrolled {
        background: var(--green-dark);
        box-shadow: 0 2px 20px rgba(0, 0, 0, .35);
    }

    .nav-logo {
        display: flex;
        align-items: center;
        gap: 3px;
    }

    .nav-logo-text {
        font-family: var(--font-display);
        font-size: 1.3rem;
        letter-spacing: .06em;
        color: var(--white);
        line-height: 1.1;
    }

    .nav-logo-text span {
        display: block;
        font-family: var(--font-body);
        font-size: .62rem;
        font-weight: 300;
        letter-spacing: .12em;
        color: var(--lime);
        text-transform: uppercase;
    }

    .nav-links {
        display: flex;
        gap: 32px;
        align-items: center;
    }

    .nav-links a {
        font-size: .82rem;
        font-weight: 500;
        letter-spacing: .1em;
        text-transform: uppercase;
        color: var(--lime-light);
        position: relative;
        padding-bottom: 3px;
        transition: color var(--transition);
    }

    .nav-links a::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        height: 2px;
        width: 0;
        background: var(--lime);
        transition: width var(--transition);
    }

    .nav-links a:hover {
        color: var(--white);
    }

    .nav-links a:hover::after {
        width: 100%;
    }

    .nav-cta {
        background: var(--green-bright) !important;
        color: var(--white) !important;
        padding: 9px 20px !important;
        border-radius: 100px !important;
    }

    .nav-cta:hover {
        background: var(--lime) !important;
        color: var(--ink) !important;
        transform: translateY(-2px);
    }

    .nav-cta::after {
        display: none !important;
    }

    .hamburger {
        display: none;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        padding: 4px;
        background: none;
        border: none;
    }

    .hamburger span {
        display: block;
        width: 26px;
        height: 2px;
        background: var(--white);
        border-radius: 2px;
        transition: var(--transition);
    }

    .hamburger.open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.open span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu {
        position: fixed;
        inset: 0;
        background: var(--ink);
        z-index: 999;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 0 8%;
        gap: 1.6rem;
        transform: translateX(100%);
        transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .mobile-menu.open {
        transform: translateX(0);
    }

    .mobile-menu a {
        font-family: var(--font-display);
        font-size: clamp(2.2rem, 8vw, 4rem);
        letter-spacing: .04em;
        font-weight: 600;
        color: var(--white);
        transition: color var(--transition);
    }

    .mobile-menu a:hover,
    .mobile-menu a.active {
        color: var(--lime);
    }

    /* BUTTONS */
    .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-family: var(--font-body);
        font-size: .85rem;
        font-weight: 500;
        letter-spacing: .05em;
        padding: 14px 28px;
        border-radius: 100px;
        cursor: pointer;
        border: none;
        transition: var(--transition);
    }

    .btn-primary {
        background: var(--green-bright);
        color: var(--white);
    }

    .btn-primary:hover {
        background: var(--green-dark);
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(46, 125, 50, .4);
    }

    .btn-outline {
        background: transparent;
        color: var(--white);
        border: 1.5px solid rgba(255, 255, 255, .35);
    }

    .btn-outline:hover {
        border-color: var(--lime);
        color: var(--lime);
        transform: translateY(-3px);
    }

    .btn-dark {
        background: var(--ink);
        color: var(--white);
    }

    .btn-dark:hover {
        background: var(--green-dark);
        transform: translateY(-3px);
    }

    /* UTILS */
    section {
        scroll-margin-top: var(--nav-h);
    }

    .container {
        max-width: 1140px;
        margin-inline: auto;
        padding-inline: 5%;
    }

    .section-label {
        display: inline-block;
        font-size: .7rem;
        font-weight: 500;
        letter-spacing: .18em;
        text-transform: uppercase;
        color: var(--green-mid);
        margin-bottom: 12px;
    }

    .section-title {
        font-family: var(--font-display);
        font-size: clamp(2.2rem, 5vw, 3.8rem);
        line-height: 1;
        letter-spacing: .02em;
    }

    .section-body {
        font-size: .95rem;
        line-height: 1.8;
        color: var(--ink-soft);
        max-width: 560px;
    }

    .reveal {
        opacity: 0;
        transform: translateY(32px);
        transition: opacity .7s ease, transform .7s ease;
    }

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .reveal-delay-1 {
        transition-delay: .1s;
    }

    .reveal-delay-2 {
        transition-delay: .2s;
    }

    .reveal-delay-3 {
        transition-delay: .3s;
    }

    .reveal-delay-4 {
        transition-delay: .4s;
    }

    /* HERO */
    #hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        background: var(--ink);
        padding: 5%;
    }


    .hero-bg {
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 60% 40%, #1b4d1b 0%, #0a1a0a 70%);
    }

    .hero-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(67, 160, 71, .04) 40px, rgba(67, 160, 71, .04) 41px);
    }

    .hero-bg::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 0;
        right: 0;
        height: 120px;
        background: linear-gradient(transparent, var(--off-white));
    }

    .hero-circle {
        position: absolute;
        right: -15vw;
        top: 50%;
        transform: translateY(-50%);
        width: 70vw;
        height: 70vw;
        max-width: 700px;
        max-height: 700px;
        border-radius: 50%;
        border: 1px solid rgba(200, 230, 160, .12);
        pointer-events: none;
    }

    .hero-circle::before {
        content: '';
        position: absolute;
        inset: 15%;
        border-radius: 50%;
        border: 1px solid rgba(200, 230, 160, .18);
    }

    .hero-circle::after {
        content: '';
        position: absolute;
        inset: 30%;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(67, 160, 71, .15) 0%, transparent 70%);
    }

    .hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 5% 6%;
        max-width: 860px;
    }

    @keyframes pulse {

        0%,
        100% {
            opacity: 1;
            transform: scale(1);
        }

        50% {
            opacity: .5;
            transform: scale(1.4);
        }
    }

    .hero-title {
        font-family: var(--font-display);
        font-size: clamp(3.5rem, 12vw, 8rem);
        line-height: 1.05;
        font-weight: 700;
        letter-spacing: .02em;
        color: var(--white);
        animation: fadeUp .8s .4s ease both;
    }

    .hero-title .accent {
        color: var(--lime);
    }

    .hero-sub {
        margin-top: 20px;
        font-size: clamp(.9rem, 2vw, 1.1rem);
        font-weight: 300;
        color: rgba(200, 230, 160, .75);
        max-width: 520px;
        margin-inline: auto;
        line-height: 1.7;
        animation: fadeUp .8s .6s both;
    }

    .hero-actions {
        margin-top: 40px;
        animation: fadeUp .8s .8s both;
    }

    @keyframes fadeUp {
        from {
            opacity: 0;
            transform: translateY(28px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Library */
    .hero-accents {
        font-family: var(--font-display);
        font-size: clamp(3.5rem, 12vw, 8rem);
        line-height: 1.05;
        font-weight: 700;
        letter-spacing: .02em;
        color: var(--lime);
        animation: fadeUp .8s .4s ease both;
    }

    /* ABOUT */
    #about {
        background: var(--off-white);
        padding: 100px 0;
        position: relative;
        overflow: hidden;
        color: rebeccapurple;
    }

    #about::before {
        content: 'SUCF';
        position: absolute;
        right: -2%;
        top: 50%;
        transform: translateY(-50%);
        font-family: var(--font-display);
        font-size: 22vw;
        color: rgba(46, 125, 50, .04);
        pointer-events: none;
        user-select: none;
        white-space: nowrap;
    }

    .about-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
    }

    .about-logo-wrap {
        display: flex;
        justify-content: center;
    }

    .about-logo-ring {
        position: relative;
        width: 280px;
        height: 280px;
    }

    .about-logo-ring img,
    .nav-logo img {
        border-radius: 50%;
    }

    .about-logo-ring::before,
    .about-logo-ring::after {
        content: '';
        position: absolute;
        border-radius: 50%;
        border: 2px solid var(--lime);
    }

    .about-logo-ring::before {
        inset: -20px;
        opacity: .4;
        animation: spin 18s linear infinite;
    }

    .about-logo-ring::after {
        inset: -40px;
        opacity: .2;
        animation: spin 28s linear infinite reverse;
    }

    @keyframes spin {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }


    .about-logo-ring svg {
        width: 100%;
        height: 100%;
    }

    .about-text {
        position: relative;
        z-index: 1;
    }

    .about-text .section-title {
        color: var(--ink);
        margin-bottom: 20px;
    }


    /* ── Objectives ── */
    .objectives {
        background: var(--cream);
        padding: 3% 3%;
    }

    .objectives-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .obj-card {
        background: #fff;
        border-radius: 12px;
        padding: 2rem 1.5rem;
        border-left: 4px solid var(--green-bright);
        box-shadow: 0 4px 20px rgba(27, 58, 107, 0.06);
        transition: transform .25s, box-shadow .25s;
        position: relative;
        overflow: hidden;
    }

    .obj-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        right: 0;
        width: 80px;
        height: 80px;
        background: radial-gradient(circle, rgba(201, 149, 42, 0.08), transparent 70%);
        border-radius: 50%;
    }

    .obj-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 40px rgba(27, 58, 107, 0.12);
    }

    .obj-num {
        font-family: 'Cormorant Garamond', serif;
        font-size: 3rem;
        font-weight: 700;
        color: var(--off-white);
        line-height: 1;
        margin-bottom: .5rem;
    }

    .obj-title {
        font-size: 1rem;
        font-weight: 600;
        color: var(--green-mid);
        margin-bottom: .5rem;
    }

    .obj-desc {
        font-size: .85rem;
        color: #666;
        line-height: 1.6;
    }



    /* MEETINGS */
    #meetings {
        background: var(--white);
        padding: 100px 0;
    }

    .meetings-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .meetings-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 5%;
    }

    .meeting-card {
        position: relative;
        overflow: hidden;
        aspect-ratio: 10/7;
        cursor: pointer;
    }

    .meeting-card:nth-child(1) .card-bg {
        background: linear-gradient(135deg, #0d2e0d 0%, #1b5e20 100%);
    }

    .meeting-card:nth-child(2) .card-bg {
        background: linear-gradient(135deg, #0a2010 0%, #2e7d32 100%);
    }

    .meeting-card:nth-child(3) .card-bg {
        background: linear-gradient(135deg, #0e2f0e 0%, #388e3c 100%);
    }

    .card-bg {
        position: absolute;
        inset: 0;
        transition: transform .6s cubic-bezier(.4, 0, .2, 1);
    }

    .card-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, transparent 55%);
    }

    .meeting-card:nth-child(1) .card-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 70% 30%, rgba(200, 230, 160, .15) 0%, transparent 60%);
    }

    .meeting-card:nth-child(2) .card-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        background: repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(200, 230, 160, .05) 15px, rgba(200, 230, 160, .05) 16px);
    }

    .meeting-card:nth-child(3) .card-bg::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 30% 70%, rgba(212, 175, 55, .12) 0%, transparent 60%);
    }

    .meeting-card:hover .card-bg {
        transform: scale(1.06);
    }

    .card-inner {
        position: absolute;
        inset: 0;
        z-index: 2;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 32px 28px;
    }

    .card-day {
        font-family: var(--font-display);
        font-size: 2.5rem;
        letter-spacing: .05em;
        color: var(--white);
        line-height: 1;
        font-weight: 700;
    }

    .card-venue {
        font-size: .72rem;
        letter-spacing: .14em;
        text-transform: capitalize;
        color: var(--lime);
        margin-top: 6px;
        font-weight: 600;
    }

    .card-time {
        font-family: var(--font-display);
        font-size: 1.4rem;
        color: var(--lime);
        margin-top: 10px;
        align-self: flex-end;
        font-weight: 600;
    }



    /* EVENTS */
    /* #events {
        background: var(--off-white);
        padding: 100px 0;
    }

    .events-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .events-ticker {
        display: flex;
        gap: 20px;
        overflow-x: auto;
        padding-bottom: 12px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .events-ticker::-webkit-scrollbar {
        display: none;
    }

    .event-chip {
        flex-shrink: 0;
        background: var(--white);
        border-radius: 12px;
        padding: 24px 28px;
        border: 1px solid rgba(46, 125, 50, .1);
        min-width: 240px;
        transition: var(--transition);
        cursor: pointer;
    }

    .event-chip:hover {
        border-color: var(--green-mid);
        transform: translateY(-4px);
        box-shadow: 0 12px 30px rgba(46, 125, 50, .1);
    }

    .event-date-badge {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        background: var(--green-dark);
        color: var(--white);
        border-radius: 8px;
        padding: 8px 14px;
        margin-bottom: 14px;
    }

    .event-date-badge .month {
        font-size: .62rem;
        letter-spacing: .12em;
        text-transform: uppercase;
        color: var(--lime);
    }

    .event-date-badge .day {
        font-family: var(--font-display);
        font-size: 1.8rem;
        line-height: 1;
    }

    .event-chip-name {
        font-family: var(--font-display);
        font-size: 1.05rem;
        letter-spacing: .04em;
        color: var(--ink);
        margin-bottom: 6px;
    }

    .event-chip-loc {
        font-size: .78rem;
        color: var(--ink-soft);
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .event-chip-loc::before {
        content: '📍';
        font-size: .7rem;
    } */

    /* JOIN */
    #join {
        background: var(--green-dark);
        padding: 100px 5%;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    #join::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 50% 50%, rgba(67, 160, 71, .35) 0%, transparent 65%);
    }

    .join-inner {
        position: relative;
        z-index: 1;
        max-width: 620px;
        margin-inline: auto;
    }

    .join-inner .section-label {
        color: var(--lime);
    }

    .join-inner .section-title {
        color: var(--white);
        margin-bottom: 16px;
    }

    .join-inner .section-body {
        color: rgba(200, 230, 160, .75);
        margin-inline: auto;
        margin-bottom: 36px;
    }

    .join-form {
        display: flex;
        gap: 15px;
        max-width: 460px;
        margin-inline: auto;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .join-form input {
        flex: 1;
        min-width: 200px;
        background: rgba(255, 255, 255, .1);
        border: 1.5px solid rgba(200, 230, 160, .25);
        border-radius: 100px;
        padding: 13px 22px;
        font-family: var(--font-body);
        font-size: .9rem;
        color: var(--white);
        outline: none;
        transition: border-color var(--transition);
    }

    .join-form input::placeholder {
        color: rgba(200, 230, 160, .45);
    }

    .join-form input:focus {
        border-color: var(--lime);
    }

    .join-socials {
        display: flex;
        justify-content: center;
        gap: 16px;
        margin-top: 36px;
    }

    .social-link {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        border: 1.5px solid rgba(200, 230, 160, .25);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--lime-light);
        font-size: 1rem;
        transition: var(--transition);
    }

    .social-link:hover {
        background: rgba(200, 230, 160, .15);
        border-color: var(--lime);
        transform: translateY(-3px);
    }

    .social-link-mobile {
        width: 34px;
        height: 34px;
    }

    /* FOOTER */
    footer {
        background: var(--ink);
        padding: 60px 5% 30px;
    }

    .footer-grid {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr;
        gap: 48px;
        margin-bottom: 48px;
    }

    .footer-logo-grid {
        display: flex;
        gap: 5px;
        align-items: center;
        padding-left: 8px;
    }

    .footer-logo-text {
        font-family: var(--font-display);
        font-size: 1.3rem;
        letter-spacing: .06em;
        color: var(--white);
        line-height: 1.1;
    }

    .footer-logo-text span {
        display: block;
        font-family: var(--font-body);
        font-size: .62rem;
        font-weight: 300;
        letter-spacing: .12em;
        color: var(--lime);
        text-transform: uppercase;
    }

    .address {
        margin-top: 1rem;
        color: var(--lime);
        font-size: 11px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: left;
        width: 250px;
        gap: 5px;
    }

    .footer-brand p {
        font-size: .85rem;
        color: rgba(255, 255, 255, .45);
        line-height: 1.7;
        margin-top: 16px;
    }

    .footer-brand-logo {
        display: flex;
        align-items: center;
        gap: 3px;
    }

    .footer-brand-logo-text {
        font-family: var(--font-display);
        font-size: 1.1rem;
        letter-spacing: .06em;
        color: var(--white);
    }

    .footer-col h4 {
        font-size: .7rem;
        font-weight: 600;
        letter-spacing: .16em;
        text-transform: uppercase;
        color: var(--lime);
        margin-bottom: 18px;
    }

    .footer-col a {
        display: block;
        font-size: .85rem;
        color: rgba(255, 255, 255, .5);
        margin-bottom: 10px;
        transition: color var(--transition);
    }

    .footer-col a:hover {
        color: var(--white);
    }

    .footer-bottom {
        border-top: 1.5px solid rgba(255, 255, 255, .07);
        padding-top: 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
    }

    .footer-bottom p,
    .footer-bottom a {
        font-size: .78rem;
        color: rgba(255, 255, 255, .3);
    }

    .footer-bottom a:hover {
        color: var(--lime);
    }

    /* BACK TOP */
    #back-top {
        position: fixed;
        bottom: 28px;
        right: 28px;
        width: 46px;
        height: 46px;
        background: var(--green-mid);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        font-size: 1.1rem;
        cursor: pointer;
        border: none;
        z-index: 900;
        opacity: 0;
        transform: translateY(16px);
        transition: var(--transition);
        box-shadow: 0 6px 20px rgba(46, 125, 50, .4);
    }

    #back-top.show {
        opacity: 1;
        transform: translateY(0);
    }

    #back-top:hover {
        background: var(--green-dark);
    }

    /* RESPONSIVE */
    @media (max-width:900px) {

        .about-grid,
        .devotionals-grid {
            grid-template-columns: 1fr;
        }

        .about-logo-wrap {
            order: -1;
        }

        .about-logo-ring {
            width: 200px;
            height: 200px;
        }

        .meetings-grid {
            grid-template-columns: 1fr;
        }

        .meeting-card {
            aspect-ratio: 13/7;
        }

        .footer-grid {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width:640px) {
        .nav-links {
            display: none;
        }

        .hamburger {
            display: flex;
        }

        .join-form {
            flex-direction: column;
        }

        .footer-grid {
            grid-template-columns: 1fr;
        }

        .programmes-header,
        .devotionals-header {
            flex-direction: column;
            align-items: flex-start;
        }

        .address {
            font-size: 9px;
        }

    }
