﻿/* ─── Reset & base ─────────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ink: #0F172A;
    --ink-soft: #0F172ACC;
    --white: #FFFFFF;
    --grey: #6B6B76;
    --grey-light: #A1A3B4;
    --indigo: #1A56DB;
    --indigo-dark: #164dc4;
    --teal: #00E0FF;
    --border-soft: rgba(20,20,28,0.08);
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --cream-tint: #FFFAF5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--ink);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.5;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
}

.container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 900px) {
    .container {
        padding: 0 3rem;
    }
}

@media (min-width: 1280px) {
    .container {
        padding: 0 4rem;
    }
}

/* ─── Header ───────────────────────────────────────────────── */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border-soft);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.5rem;
    gap: 1rem;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}

/* .nav__brand-mark {
      width: 30px;
      height: 30px;
     
    } */


.nav__brand-text {
    font-size: clamp(13px, 4w, 16px);
    line-height: 1.15;
    white-space: nowrap;
}

    .nav__brand-text .strong {
        font-weight: 700;
        color: var(--ink);
    }

    .nav__brand-text .light {
        font-weight: 700;
        color: var(--grey-light);
        margin-left: 0.3rem;
    }

.nav__links {
    display: none;
    list-style: none;
    align-items: center;
    gap: 2.4rem;
}

    .nav__links a {
        font-size: 14px;
        font-weight: 400;
        color: var(--ink-soft);
        transition: color 0.2s;
        position: relative;
    }

        .nav__links a:hover {
            color: var(--ink);
        }

.nav__cta-slot {
    display: none;
}

.nav__burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
    width: 34px;
    height: 34px;
}

    .nav__burger span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--ink);
        border-radius: 2px;
        transition: transform 0.3s var(--ease), opacity 0.25s ease;
    }

    .nav__burger.is-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .nav__burger.is-active span:nth-child(2) {
        opacity: 0;
    }

    .nav__burger.is-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

@media (min-width: 900px) {
    .nav {
        padding: 1.25rem 3rem;
    }

    .nav__links {
        display: flex;
    }

    .nav__burger {
        display: none;
    }
}

@media (min-width: 1280px) {
    .nav {
        padding: 1.4rem 4rem;
    }
}

/* Mobile nav drawer */
.nav__drawer {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 200;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s var(--ease), visibility 0.35s;
}

    .nav__drawer.is-open {
        opacity: 1;
        visibility: visible;
    }

.nav__drawer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid var(--border-soft);
}

.nav__drawer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    padding: 2.5rem 1.5rem;
}

    .nav__drawer-list a {
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--ink);
    }

body.nav-open {
    overflow: hidden;
}

/* ─── Hero ─────────────────────────────────────────────────── */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #1B1440;
}

.hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 70% 35%;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    /* background:
        linear-gradient(100deg, rgba(20,60,110,0.55) 0%, rgba(60,40,120,0.55) 45%, rgba(90,30,110,0.45) 100%),
        linear-gradient(to top, rgba(10,8,30,0.55) 0%, rgba(10,8,30,0.05) 40%); */
}

.hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-block: 6rem 5rem;
}

.hero__title {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 8.5vw, 5rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
    max-width: 900px;
    margin-bottom: 2.5rem;
    max-width: 798px;
}

.hero__buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.875rem 1.7rem;
    border-radius: 9999px;
    white-space: nowrap;
    transition: background 0.2s, transform 0.15s, border-color 0.2s;
    border: 1.5px solid transparent;
}

    .btn:active {
        transform: scale(0.97);
    }

.btn--primary {
    background: var(--indigo);
    color: var(--white);
}

    .btn--primary:hover {
        background: var(--indigo-dark);
    }

.btn--outline {
    background-color: transparent;
    border: 1.5px solid #0F172A;
}

.btn--ghost {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.4);
    color: var(--white);
    backdrop-filter: blur(6px);
}

    .btn--ghost:hover {
        background: rgba(255,255,255,0.22);
    }

@media (min-width: 640px) {
    .hero__title {
        margin-bottom: 3rem;
    }
}

@media (min-width: 900px) {
    .hero__inner {
        padding-block: 7rem 6rem;
    }
}

@media (min-width: 1280px) {
    .hero__inner {
        padding-block: 8rem 7rem;
    }
}


/* ─── About Hero ("Who We Are") ────────────────────────────────── */
.about-hero {
    position: relative;
    overflow: hidden;
    height: clamp(145px, 27vw, 250px);
    background: #14141C;
}

.about-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
}

.about-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,18,0.72) 0%, rgba(10,10,18,0.55) 45%, rgba(10,10,18,0.85) 100%);
}

.about-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: clamp(2.75rem, 11vw, 3.5rem);
    text-align: center;
}

.about-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    transition: color 0.2s;
}

    .about-hero__back:hover {
        color: var(--white);
    }

    .about-hero__back svg {
        width: 16px;
        height: 16px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.about-hero__title {
    font-weight: 700;
    font-size: clamp(1.75rem, 7vw, 3.2rem);
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
}

.about-hero__watermark {
    position: absolute;
    left: 50%;
    bottom: clamp(-30%, calc(-5% - 4vw), -5%);
    transform: translateX(-50%);
    font-weight: 700;
    font-size: clamp(3rem, 10vw, 8rem);
    letter-spacing: -0.05em;
    text-transform: uppercase;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(255,255,255,0.3);
    white-space: nowrap;
    user-select: none;
    pointer-events: none;
    font-family: sans-serif;
}

@media (min-width: 900px) {
    .about-hero__inner {
        padding-top: 4rem;
    }
}

/* ─── Reveal animation ────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

    .reveal.is-visible {
        opacity: 1;
        transform: translateY(0);
    }

.reveal-img {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}

    .reveal-img.is-visible {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

.reveal-d1 {
    transition-delay: 0.12s;
}

.reveal-d2 {
    transition-delay: 0.24s;
}

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-img {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ─── Focus visibility ─────────────────────────────────────────── */
a:focus-visible, button:focus-visible {
    outline: 2px solid var(--indigo);
    outline-offset: 2px;
    border-radius: 4px;
}

/* ─── Missed Last Week's Service ──────────────────────────────── */
.catchup {
    background: var(--white);
    padding: 4rem 0;
}

.catchup__header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.75rem;
}

.catchup__title {
    font-weight: 600;
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    letter-spacing: -0.01em;
    color: var(--ink);
}

.catchup__sub {
    font-size: 0.95rem;
    color: var(--grey);
}

.catchup__player {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #0B1130;
    box-shadow: 0 20px 50px rgba(20,20,28,0.12);
}

    .catchup__player iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }

@media (min-width: 900px) {
    .catchup {
        padding: 5.5rem 0;
    }

    .catchup__header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 2rem;
        margin-bottom: 2.25rem;
    }

    .catchup__sub {
        padding-bottom: 0.35rem;
    }
}

/* ─── Recent Series ────────────────────────────────────────────── */
.series {
    background: #EEF2F3;
    padding: 4rem 0;
}

.series__title {
    font-weight: 700;
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    letter-spacing: -0.01em;
    color: var(--ink);
    margin-bottom: 2rem;
}

.series__track {
    display: flex;
    gap: 1.25rem;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* margin: 0 -1.5rem;
      padding: 0 1.5rem 0.5rem; */
}

    .series__track::-webkit-scrollbar {
        display: none;
    }

.series-card {
    position: relative;
    flex: 0 0 78%;
    min-width: 320px;
    scroll-snap-align: start;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #111;
}

.series-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.series-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, #0B132B 0%, rgba(11, 19, 43, 0.3) 50%, rgba(11, 19, 43, 0) 100%);
}

.series-card__body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.5rem;
}

.series-card__title {
    font-weight: 700;
    font-size: clamp(16px, 4vw, 24px);
    color: #F4F5F9;
    margin-bottom: 0.4rem;
}

.series-card__meta {
    font-size: 0.85rem;
    color: #A1A3B4;
    line-height: 1.5;
    margin-bottom: 1.1rem;
    max-width: 260px;
}



.series-card__buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.5rem;
}

.series-btn {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.82rem;
    padding: 0.65rem 1.15rem;
    border-radius: 9999px;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.15s;
    color: #FCFCFC;
}

    .series-btn:active {
        transform: scale(0.96);
    }

.series-btn--watch {
    background: var(--indigo);
    color: var(--white);
}

    .series-btn--watch:hover {
        background: var(--indigo-dark);
    }

.series-btn--audio {
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.28);
    color: var(--white);
}

    .series-btn--audio:hover {
        background: rgba(255,255,255,0.24);
    }

.series__footer {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
}

.series__all-btn {
    display: inline-flex;
    align-items: center;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    background: var(--indigo);
    color: var(--white);
    padding: 1rem 1.9rem;
    border-radius: 9999px;
    transition: background 0.2s, transform 0.15s;
}

    .series__all-btn:hover {
        background: var(--indigo-dark);
        transform: translateY(-2px);
    }

@media (min-width: 640px) {
    .series-card {
        flex: 0 0 42%;
    }
}

@media (min-width: 900px) {
    .series {
        padding: 5.5rem 0;
    }

    .series-card {
        flex: 0 0 23.5%;
    }
}

@media (min-width: 1280px) {
    .series__track {
        gap: 1.5rem;
    }
}


/* ─── Upcoming Events ─────────────────────────────────────────── */
.events-section {
    background: var(--white);
    padding: 4rem 0;
}

.events__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.events__title {
    font-weight: 600;
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    letter-spacing: -0.01em;
    color: var(--ink);
}

.events__nav {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
}

.events__nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--border-soft);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

    .events__nav-btn:hover {
        background: #F3F4F6;
        border-color: rgba(20,20,28,0.2);
    }

    .events__nav-btn svg {
        width: 16px;
        height: 16px;
        stroke: var(--ink);
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.events__track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

    .events__track::-webkit-scrollbar {
        display: none;
    }

.event-card {
    flex: 0 0 86%;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-soft);
    border-radius: 18px;
    overflow: hidden;
    background: var(--white);
    min-height: 360px;
}

.event-card__img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    flex-shrink: 0;
}

    .event-card__img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.event-card__body {
    flex: 1;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
}

.event-card__title {
    font-weight: 700;
    font-size: 18px;
    color: #1E1C1A;
    margin-bottom: 0.75rem;
}

.event-card__desc {
    font-size: 0.9rem;
    color: #1E1C1A;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.event-card__meta {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-bottom: 1.5rem;
}

.event-card__meta-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: #1E1C1A;
}

    .event-card__meta-row svg {
        width: 16px;
        height: 16px;
        stroke: var(--indigo);
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
    }

.event-card__cta {
    margin-top: auto;
    align-self: flex-start;
    background: var(--indigo);
    color: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.8rem 1.5rem;
    border-radius: 9999px;
    transition: background 0.2s, transform 0.15s;
}

    .event-card__cta:hover {
        background: var(--indigo-dark);
    }

@media (min-width: 640px) {
    .event-card {
        flex-direction: row;
        flex: 0 0 88%;
    }

    .event-card__img {
        width: 42%;
        aspect-ratio: auto;
    }
}

@media (min-width: 900px) {
    .events-section {
        padding: 5.5rem 0;
    }

    .event-card {
        flex: 0 0 640px;
    }

    .event-card__img {
        width: 260px;
    }
}

/* ─── Join Us Online ──────────────────────────────────────────── */
.joinonline {
    position: relative;
    overflow: hidden;
    background: #0B132B;
    padding: 3.5rem 0;
}

.joinonline__wash {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: #0B132B;
}

.joinonline__blob {
    position: absolute;
    top: 50%;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    transform: translateY(-50%);
}

.joinonline__blob--purple {
    width: clamp(240px, 36vw, 460px);
    height: clamp(240px, 36vw, 460px);
    left: 50%;
    margin-left: -30%;
    background: #381084;
    filter: blur(100px);
    opacity: 0.4;
}

.joinonline__blob--teal {
    width: clamp(240px, 36vw, 460px);
    height: clamp(240px, 36vw, 460px);
    left: 58%;
    margin-left: -12%;
    background: #00E0FF;
    filter: blur(100px);
    opacity: 0.2;
}

.joinonline__inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.joinonline__title {
    font-weight: 800;
    font-size: clamp(1.8rem, 6vw, 2.6rem);
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--white);
}

.joinonline__desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.75);
    max-width: 440px;
}

.joinonline__btn {
    align-self: flex-start;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.55);
    border-radius: 9999px;
    padding: 0.95rem 1.9rem;
    white-space: nowrap;
    transition: background 0.2s, border-color 0.2s;
}

    .joinonline__btn:hover {
        background: rgba(255,255,255,0.12);
        border-color: rgba(255,255,255,0.8);
    }

@media (min-width: 900px) {
    .joinonline {
        padding: 4.5rem 0;
    }

    .joinonline__inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
    }

    .joinonline__btn {
        align-self: center;
    }
}

/* ─── Find Your Place to Serve ────────────────────────────────── */
.ministries {
    background: var(--white);
    padding: 3rem 0;
}

.ministries__header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
    margin-bottom: 2rem;
}

.ministries__title {
    font-weight: 700;
    font-size: clamp(1.5rem, 6vw, 2.5rem);
    letter-spacing: -0.01em;
    color: var(--ink);
}

.ministries__all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ink);
    white-space: nowrap;
    flex-shrink: 0;
}

    .ministries__all-link svg {
        width: 15px;
        height: 15px;
        stroke: var(--ink);
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: transform 0.2s;
    }

    .ministries__all-link:hover svg {
        transform: translateX(3px);
    }

.ministries__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.ministry-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    /* aspect-ratio: 4 / 3; */
    background: #111;
    min-height: 320px;
}

.ministry-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ministry-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4,6,20,0.85) 0%, rgba(4,6,20,0.25) 50%, rgba(4,6,20,0.02) 75%);
}

.ministry-card__body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.5rem;
}

.ministry-card__title {
    font-weight: 700;
    font-size: 1.3rem;
    color: #F4F5F9;
    margin-bottom: 0.35rem;
}

.ministry-card__desc {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--grey-light);
    max-width: 219px;
}

@media (min-width: 900px) {
    .ministries {
        padding: 4rem 0 ;
    }

    .ministries__grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 1.5rem;
    }

    .ministry-card {
        aspect-ratio: unset;
        height: 420px;
    }
}

/* ─── Your Next Step ──────────────────────────────────────────── */
.nextstep {
    position: relative;
    overflow: hidden;
    background: #0B132B;
    padding: 4rem 0;
}

    .nextstep::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(400px 400px at 45% 5%, #38108466, transparent 60%), radial-gradient(400px 400px at 55% 80%, #00E0FF33, transparent 65%), linear-gradient(160deg, #14102E 0%, #0B0B22 55%);
    }

.nextstep__inner {
    position: relative;
    z-index: 2;
}

.nextstep__title {
    text-align: center;
    font-weight: 700;
    font-size: clamp(2rem, 7vw, 3.2rem);
    letter-spacing: -0.01em;
    color: var(--white);
    margin-bottom: 2.5rem;
}

.nextstep__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

.nextstep-card {
    border-radius: 20px;
    padding: 1.5rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(14px);
}

.nextstep-card--primary {
    background: var(--indigo);
    border-color: var(--indigo);
}

.nextstep-card__title {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.nextstep-card__desc {
    font-size: 0.9rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.72);
    margin-bottom: 1.5rem;
}

.nextstep-card--primary .nextstep-card__desc {
    color: rgba(255,255,255,0.85);
}

.nextstep-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--white);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 9999px;
    padding: 0.75rem 1.35rem;
    white-space: nowrap;
    transition: background 0.2s, border-color 0.2s, transform 0.15s;
}

    .nextstep-card__btn:hover {
        background: rgba(255,255,255,0.2);
        transform: translateY(-2px);
    }

.nextstep-card--primary .nextstep-card__btn {
    background: rgba(255,255,255,0.16);
    border-color: rgba(255,255,255,0.4);
}

    .nextstep-card--primary .nextstep-card__btn:hover {
        background: rgba(255,255,255,0.28);
    }

@media (min-width: 640px) {
    .nextstep__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .nextstep {
        padding: 5rem 0;
    }

    .nextstep-card {
        padding: 1.75rem;
    }
}

/* ─── Footer ───────────────────────────────────────────────────── */
.footer {
    background: #050915;
    color: var(--white);
    padding: 3.5rem 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.75rem;
    padding-bottom: 3rem;
}

/* Brand column */
.footer__brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1rem;
}


.footer__brand-mark svg {
    width: 100%;
    height: 100%;
    stroke: #fff;
    fill: none;
    stroke-width: 1.6;
}

.footer__brand-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--white);
}

.footer__desc {
    font-size: 0.92rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.60);
    max-width: 440px;
    margin-bottom: 1.5rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer__subscribe {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 9999px;
    padding: 0.35rem;
    max-width: 380px;
    margin-bottom: 1.5rem;
}

    .footer__subscribe input {
        flex: 1;
        min-width: 0;
        background: none;
        border: none;
        outline: none;
        padding: 0.65rem 0.9rem;
        font-family: 'Inter', sans-serif;
        font-size: 0.88rem;
        color: var(--white);
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

        .footer__subscribe input::placeholder {
            color: rgba(255,255,255,0.45);
        }

    .footer__subscribe button {
        flex-shrink: 0;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 600;
        font-size: 0.85rem;
        background: var(--indigo);
        color: var(--white);
        border: none;
        border-radius: 9999px;
        padding: 0.7rem 1.3rem;
        transition: background 0.2s;
    }

        .footer__subscribe button:hover {
            background: var(--indigo-dark);
        }

.footer__socials {
    display: flex;
    gap: 0.6rem;
}

.footer__social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, border-color 0.2s;
}

    .footer__social-btn:hover {
        background: rgba(255,255,255,0.14);
        border-color: rgba(255,255,255,0.28);
    }

    .footer__social-btn svg {
        width: 16px;
        height: 16px;
        stroke: var(--white);
        opacity: 80%;
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

/* Nav / contact columns */
.footer__label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1.1rem;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

    .footer__links a {
        font-size: 14px;
        font-family: 'Plus Jakarta Sans', sans-serif;
        color: rgba(255,255,255,0.60);
        transition: color 0.2s;
        font-weigth: 400;
    }

        .footer__links a:hover {
            color: var(--white);
        }

.footer__contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1.25rem;
}

    .footer__contact-list li {
        font-family: 'Plus Jakarta Sans', sans-serif;
        display: flex;
        align-items: center;
        gap: 0.65rem;
        font-size: 12px;
        color: rgba(255,255,255,0.60);
    }

    .footer__contact-list svg {
        width: 16px;
        height: 16px;
        stroke: var(--teal);
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
    }

.footer__contact-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.12);
    margin-bottom: 1.1rem;
}

.footer__hours-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

    .footer__hours-list li {
        display: flex;
        align-items: center;
        gap: 0.65rem;
        font-size: 12px;
        color: rgba(255,255,255,0.60);
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .footer__hours-list svg {
        width: 15px;
        height: 15px;
        stroke: var(--teal);
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
    }

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    font-size: 12px;
    color: rgba(255,255,255,0.18);
}

@media (min-width: 640px) {
    .footer__grid {
        grid-template-columns: 1.3fr 1fr;
    }
}

@media (min-width: 900px) {
    .footer {
        padding: 5rem 0 0;
    }

    .footer__grid {
        grid-template-columns: 1.4fr 1fr 1fr;
        gap: 3rem;
        padding-bottom: 3.5rem;
    }
}
