

:root {
    --primary: #160702;
    --primary-light: #2b1005;

    --gold: #c9a24d;
    --gold-light: #f0c866;

    --white: #ffffff;
    --light: #faf7f2;

    --text: #2b211b;
    --muted: #766d65;

    --border: rgba(201, 162, 77, 0.25);

    --shadow: 0 18px 50px rgba(0, 0, 0, 0.12);

    --radius: 18px;

    --transition: 0.3s ease;
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}


body {
    font-family: "Barlow Condensed", sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;

    overflow-x: hidden;
}


img {
    display: block;
    max-width: 100%;
}


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


button {
    font: inherit;
}




.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}


.section {
    padding: 100px 0;
}


.section-heading {
    max-width: 760px;
    margin: 19px auto 55px;
    text-align: center;
}


.section-heading h2,
.leaders-header h2 {
    color: #c9a24d;
    font-family: "Libre Baskerville", serif;
    font-size: clamp(32px, 5vw, 48px);
    line-height: 1.2;
}


.section-heading p,
.leaders-header p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 17px;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-contacts a {
    display: flex;
    align-items: center;
    gap: 9px;

    color: rgba(255, 255, 255, .75);

    text-decoration: none;

    font-size: 15px;

    transition: var(--transition);
}

.footer-contacts a i {
    width: 20px;

    color: var(--gold-light);

    text-align: center;
}

.footer-contacts a:hover {
    color: var(--gold-light);
    transform: translateX(3px);
}




.header {
    transform: translateY(0);
    transition: transform 0.28s ease;
    will-change: transform;
}

.header.header-hidden {
    transform: translateY(-110%);
}
.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(22, 7, 2, 0.97);

    border-bottom: 1px solid rgba(229, 158, 48, 0.3);

    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4);

    backdrop-filter: blur(8px);
}

.nav-container {
    min-height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


.brand {
    display: flex;
    flex-direction: column;

    line-height: 1;

    min-width: 290px;
}


.brand-main {
    font-size: clamp(25px, 2.2vw, 38px);

    font-weight: 900;

    letter-spacing: 1px;

    color: var(--gold-light);
}


.brand-sub {
    margin-top: 5px;

    font-size: clamp(16px, 1.25vw, 22px);

    font-weight: 800;

    color: #fff4dd;

    letter-spacing: 0.5px;
}


.brand-verse {
    margin-top: 6px;

    font-size: 13px;

    font-weight: 700;

    color: #d9932f;

    letter-spacing: 2px;
}


.nav {
    display: flex;

    align-items: center;
    justify-content: flex-end;

    gap: clamp(16px, 1.8vw, 32px);
}


.nav a {
    position: relative;

    padding: 12px 0;

    font-size: clamp(16px, 1.35vw, 22px);

    font-weight: 800;

    white-space: nowrap;

    color: #fff7e9;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}


.nav a::after {
    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 3px;

    height: 3px;

    border-radius: 99px;

    background: var(--gold-light);

    transform: scaleX(0);

    transform-origin: center;

    transition: transform 0.2s ease;
}


.nav a:hover,
.nav a.active {
    color: var(--gold-light);
}


.nav a:hover::after,
.nav a.active::after {
    transform: scaleX(1);
}


.menu-toggle {
    display: none;

    width: 45px;
    height: 42px;

    border: 1px solid rgba(255, 201, 93, 0.35);

    border-radius: 8px;

    background: rgba(255, 255, 255, 0.04);

    cursor: pointer;
}


.menu-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    margin: 5px auto;

    background: var(--gold-light);

    transition: 0.2s ease;
}


.menu-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}


.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}


.menu-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}




.hero {
    position: relative;

    min-height: 540px;

    isolation: isolate;

    overflow: hidden;

    background: #241006;
}


.hero-bg {
    position: absolute;
    inset: 0;

    z-index: -3;

    background-image: url("hero-bg-clean.jpg");

    background-repeat: no-repeat;

    background-size: cover;

    background-position: right center;

    transform: scale(1.015);
}


.hero-overlay {
    position: absolute;
    inset: 0;

    z-index: -2;

    background:
        linear-gradient(
            90deg,
            rgba(18, 6, 2, 0.98) 0%,
            rgba(28, 9, 2, 0.9) 25%,
            rgba(48, 16, 3, 0.58) 46%,
            rgba(48, 15, 3, 0.08) 72%,
            rgba(26, 8, 2, 0.16) 100%
        ),
        linear-gradient(
            0deg,
            rgba(20, 6, 2, 0.35),
            transparent 35%,
            rgba(255, 208, 116, 0.08)
        );
}


.hero-content {
    min-height: 540px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(330px, 0.9fr);

    align-items: center;

    position: relative;
}


.hero-copy {
    max-width: 770px;

    padding: 45px 0;

    position: relative;

    z-index: 3;
}


.eyebrow {
    display: inline-block;

    margin-bottom: 12px;

    color: var(--gold-light);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;
}


.hero .eyebrow {
    font-size: clamp(34px, 4.5vw, 70px);

    line-height: 0.88;

    font-weight: 900;

    letter-spacing: -1px;

    text-shadow:
        0 4px 0 #351307,
        0 8px 18px rgba(0, 0, 0, 0.5);
}


.ministry-line {
    margin-top: 16px;

    color: #ffd477;

    font-size: clamp(18px, 1.55vw, 25px);

    font-weight: 800;

    letter-spacing: 0.3px;

    text-shadow: 0 2px 8px #000;
}


.hero h1 {
    margin-top: 20px;

    color: #fffaf1;

    font-family: "Libre Baskerville", Georgia, serif;

    font-size: clamp(30px, 3.4vw, 58px);

    line-height: 1.1;

    font-weight: 400;

    text-shadow: 0 5px 14px rgba(0, 0, 0, 0.55);
}


.verse {
    max-width: 750px;

    margin-top: 23px;

    color: #fff3df;

    font-family: Arial, sans-serif;

    font-size: clamp(15px, 1.18vw, 19px);

    line-height: 1.55;

    text-shadow: 0 2px 7px #000;
}


.reference {
    display: block;

    margin-top: 10px;

    color: var(--gold-light);

    font-size: clamp(18px, 1.4vw, 25px);

    letter-spacing: 0.5px;
}


.hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 15px;

    margin-top: 27px;
}


.btn {
    min-height: 57px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 12px 24px;

    border-radius: 8px;

    font-size: clamp(16px, 1.2vw, 21px);

    font-weight: 800;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition),
        box-shadow var(--transition);
}


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

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}


.btn-gold {
    color: #2b1206;

    background: linear-gradient(
        #ffd66f,
        #e09a34
    );

    box-shadow:
        inset 0 1px rgba(255, 255, 255, 0.45),
        0 7px 18px rgba(0, 0, 0, 0.3);
}


.btn-outline {
    color: #ffd16b;

    border: 2px solid #e5ab40;

    background: rgba(43, 16, 5, 0.4);
}


.hero-badge {
    justify-self: center;

    align-self: end;

    margin-bottom: 38px;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 2px;

    color: #2a1005;

    text-align: center;

    filter: drop-shadow(
        0 8px 12px rgba(0, 0, 0, 0.45)
    );

    transform: rotate(-3deg);
}


.hero-badge span {
    font-size: 18px;

    font-weight: 900;

    letter-spacing: 4px;

    color: #ffd06a;
}


.hero-badge small {
    font-size: 16px;

    font-weight: 900;

    color: #ffe2a0;

    letter-spacing: 1.5px;
}


.hero-badge b {
    font-size: 19px;

    color: #ffc65b;
}




.about-section {
    background: var(--light);
}


.about-main {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    gap: 55px;

    align-items: start;
}


.worship-image {
    position: sticky;

    top: 110px;

    overflow: hidden;

    border-radius: var(--radius);
}


.worship-image img {
    width: 100%;

    height: 320px;

    margin-top: 10px;

    border-radius: 30px;

    object-fit: cover;
}


.leaders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}

.leader-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.leader-card:hover {
    transform: translateY(-6px);
}

.leader-image {
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #eee;
}

.leader-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    cursor: zoom-in;
    transition: transform .4s ease;
}

.leader-card:hover .leader-image img {
    transform: scale(1.04);
}

.leader-info {
    padding: 24px;
}

.leader-role {
    display: inline-block;
    margin-bottom: 7px;

    color: var(--gold);

    font-family: "Barlow Condensed", sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leader-info h3 {
    margin: 0 0 10px;

    color: var(--primary);

    font-family: "Barlow Condensed", sans-serif;
    font-size: 28px;
}

.leader-info p {
    margin: 0;

    color: white;
    font-size: 15px;
    line-height: 1.65;
}




.team-general {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    align-items: center;
    gap: 40px;

    padding: 30px;

    background: #fff;
    margin-top: 30px;
    margin-bottom: 20px;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    box-shadow: var(--shadow);
}

.team-general-image {
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.team-general-image img {
    width: 100%;
    height: auto;
    display: block;

    cursor: zoom-in;

    transition: transform .4s ease;
}

.team-general-image:hover img {
    transform: scale(1.03);
}

.team-general-content h3 {
    margin: 0 0 14px;

    color: var(--primary);

    font-family: "Barlow Condensed", sans-serif;
    font-size: 32px;
}

.team-general-content p {
    margin: 0;

    color: var(--text);

    font-size: 16px;
    line-height: 1.7;
}

.about-content > h3 {
    margin-bottom: 20px;

    color: var(--primary);

    font-family: "Libre Baskerville", serif;

    font-size: 29px;

    line-height: 1.35;
}


.about-content > p {
    margin-bottom: 14px;

    color: #4e5865;

    font-size: 17px;
}


.about-block {
    margin-top: 20px;

    padding: 25px;

    border: 1px solid var(--border);

    border-radius: 14px;

    background: var(--white);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.04);
}


.about-block h3 {
    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 8px;

    color: var(--primary);

    font-size: 21px;
}


.about-block h3 i {
    color: var(--gold);
}


.about-block p {
    color: var(--muted);

    font-size: 16px;
}


.about-vision {
    margin-top: 25px;

    padding: 45px 35px;

    border-radius: var(--radius);

    background: rgba(22, 7, 2, 0.97);

    color: var(--white);
}


.about-vision > span {
    color: var(--gold-light);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;
}


.about-vision h3 {
    margin: 7px 0 12px;

    font-family: "Libre Baskerville", serif;

    font-size: 34px;
}


.about-vision p {
    color: rgba(255, 255, 255, 0.85);

    font-family: "Libre Baskerville", serif;

    line-height: 1.8;
}




.leaders-section {
    position: relative;

    overflow: hidden;

    background: #241006;

    color: var(--white);
}


.leaders-section::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    right: -100px;
    bottom: -100px;

    border: 1px solid rgba(201, 162, 77, 0.2);

    border-radius: 50%;
}


.leaders-header {
    position: relative;

    z-index: 1;

    max-width: 760px;

    margin: 0 auto 55px;

    text-align: center;
}


.leaders-header h2 {
    color: var(--white);
}


.leaders-header p {
    color: rgba(255, 255, 255, 0.72);
}


.leaders-grid {
    position: relative;

    z-index: 1;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 35px;

    max-width: 900px;

    margin: 0 auto;
}


.leader-card {
    overflow: hidden;

    border: 1px solid rgba(201, 162, 77, 0.28);

    border-radius: 20px;

    background: rgba(255, 255, 255, 0.055);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.2);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}


.leader-card:hover {
    transform: translateY(-8px);

    border-color: rgba(201, 162, 77, 0.65);

    box-shadow:
        0 28px 65px rgba(0, 0, 0, 0.3);
}


.leader-image {
    height: 390px;

    overflow: hidden;

    background: rgba(201, 162, 77, 0.08);
}


.leader-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}


.leader-info {
    padding: 28px 25px 32px;

    text-align: center;
}


.leader-role {
    display: block;

    margin-bottom: 10px;

    color: var(--gold-light);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.5px;
}


.leader-info h3 {
    color: var(--white);

    font-family: "Libre Baskerville", serif;

    font-size: 23px;

    line-height: 1.35;
}




.ministries-section {
    background: var(--white);
}


.ministries-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;
}


.ministry-card {
    padding: 35px 25px;

    border: 1px solid #e9e9e9;

    border-radius: var(--radius);

    background: var(--white);

    text-align: center;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.05);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}


.ministry-card:hover {
    transform: translateY(-7px);

    border-color: var(--border);

    box-shadow: var(--shadow);
}


.ministry-card > i {
    margin-bottom: 20px;

    color: var(--gold);

    font-size: 42px;
}


.ministry-card h3 {
    margin-bottom: 10px;

    color: var(--primary);

    font-family: "Libre Baskerville", serif;

    font-size: 20px;
}


.ministry-card p {
    color: var(--muted);
}




.schedule-section {
    background: #241006;
}


.schedule-section .section-heading h2 {
    color: var(--white);
}


.schedule-section .section-heading p {
    color: rgba(255, 255, 255, 0.72);
}


.schedule-grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 22px;
}


.schedule-card {
    position: relative;

    padding: 30px;

    border-left: 4px solid var(--gold);

    border-radius: 12px;

    background: var(--white);

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.06);
}


.schedule-card .day {
    display: block;

    margin-bottom: 9px;

    color: var(--gold);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;
}


.schedule-card strong {
    display: block;

    color: var(--primary);

    font-family: "Libre Baskerville", serif;

    font-size: 22px;
}


.schedule-card p {
    margin-top: 7px;

    color: var(--muted);

    font-size: 16px;
}




.gallery-section {
    background: var(--white);
}


.gallery-slider {
    position: relative;

    display: flex;

    align-items: center;

    gap: 15px;

    max-width: 900px;

    margin: 0 auto;
}


.gallery-track {
    position: relative;

    width: 100%;

    height: 450px;

    overflow: hidden;

    border-radius: var(--radius);

    background: var(--primary);

    box-shadow: var(--shadow);

    touch-action: pan-y;
}


.gallery-slide {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0;

    visibility: hidden;

    transform: scale(1.02);

    transition:
        opacity 0.45s ease,
        transform 0.45s ease;
}


.gallery-slide.active {
    opacity: 1;

    visibility: visible;

    transform: scale(1);
}


.gallery-btn {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 0;

    border-radius: 50%;

    background: var(--primary);

    color: var(--white);

    cursor: pointer;

    transition:
        transform var(--transition),
        background var(--transition),
        color var(--transition);
}


.gallery-btn:hover {
    transform: scale(1.08);

    background: var(--gold);

    color: var(--primary);
}


.gallery-counter {
    margin-top: 15px;

    color: var(--muted);

    text-align: center;

    font-size: 14px;

    font-weight: 700;
}




.location-section {
    background: var(--light);
}


.location-grid {
    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 35px;

    align-items: stretch;
}


.location-info {
    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 45px;

    border-radius: var(--radius);

    background: var(--primary);

    color: var(--white);

    box-shadow: var(--shadow);
}


.location-label {
    display: inline-block;

    margin-bottom: 15px;

    color: var(--gold);

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;
}


.location-info h3 {
    margin-bottom: 18px;

    color: var(--white);

    font-family: "Libre Baskerville", serif;

    font-size: 28px;

    line-height: 1.4;
}


.location-info p {
    margin-bottom: 28px;

    color: rgba(255, 255, 255, 0.78);

    font-size: 17px;

    line-height: 1.8;
}


.location-button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    width: fit-content;

    min-height: 50px;

    padding: 0 24px;

    border-radius: 6px;

    background: var(--gold);

    color: var(--primary);

    font-weight: 700;

    transition:
        background var(--transition),
        transform var(--transition);
}


.location-button:hover {
    background: var(--gold-light);

    transform: translateY(-3px);
}


.location-map {
    min-height: 430px;

    overflow: hidden;

    border-radius: var(--radius);

    background: var(--primary);

    box-shadow: var(--shadow);
}


.location-map iframe {
    width: 100%;
    height: 100%;

    min-height: 430px;

    display: block;

    border: 0;
}




.contact-section {
    background: var(--white);
}


.contact-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 22px;
}


.contact-card {
    display: flex;

    flex-direction: column;

    align-items: center;

    padding: 35px 25px;

    border: 1px solid rgba(201, 162, 77, 0.22);

    border-radius: var(--radius);

    background: var(--white);

    text-align: center;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.06);

    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}


.contact-card:hover {
    transform: translateY(-7px);

    border-color: var(--gold);

    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.12);
}


.contact-icon {
    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    border-radius: 50%;

    background: rgba(201, 162, 77, 0.12);

    color: var(--gold);

    font-size: 27px;
}


.contact-card h3 {
    margin-bottom: 14px;

    color: var(--primary);

    font-family: "Libre Baskerville", serif;

    font-size: 20px;
}


.contact-card p {
    margin-bottom: 5px;

    color: var(--muted);

    font-size: 16px;

    line-height: 1.6;
}


.contact-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    width: 100%;

    min-height: 45px;

    margin-top: 20px;

    padding: 0 18px;

    border-radius: 6px;

    background: var(--primary);

    color: var(--white);

    font-size: 14px;

    font-weight: 700;

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}


.contact-button:hover {
    background: var(--gold);

    color: var(--primary);

    transform: translateY(-2px);
}


.contact-socials {
    display: flex;

    justify-content: center;

    gap: 10px;

    margin-top: 20px;
}


.contact-socials a {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(22, 7, 2, 0.12);

    border-radius: 50%;

    color: var(--primary);

    font-size: 17px;

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}


.contact-socials a:hover {
    background: var(--gold);

    color: var(--primary);

    border-color: var(--gold);

    transform: translateY(-3px);
}




.site-footer {
    background: #0d0301;

    color: var(--white);
}


.footer-grid {
    display: grid;

    grid-template-columns:
        1.2fr 1fr 1fr;

    gap: 45px;

    padding: 65px 0;
}


.footer-brand p {
    margin-top: 15px;

    color: rgba(255, 255, 255, 0.65);
}


.footer-contact h3,
.footer-social h3 {
    margin-bottom: 18px;

    color: var(--gold-light);

    font-size: 18px;

    letter-spacing: 1px;
}


.footer-contact p {
    margin-bottom: 9px;

    color: rgba(255, 255, 255, 0.75);
}


.footer-contact i {
    width: 22px;

    color: var(--gold);
}


.social-links {
    display: flex;

    flex-wrap: wrap;

    gap: 10px;
}


.social-links a {
    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 50%;

    color: var(--white);

    transition:
        background var(--transition),
        color var(--transition),
        transform var(--transition);
}


.social-links a:hover {
    background: var(--gold);

    color: var(--primary);

    transform: translateY(-3px);
}


.footer-bottom {
    padding: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    text-align: center;
}


.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);

    font-size: 13px;
}




.reveal {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}


.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}




@media (max-width: 1000px) {

    .ministries-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .schedule-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .about-main {
        grid-template-columns: 1fr;
    }


    .worship-image {
        position: relative;

        top: auto;
    }


    .worship-image img {
        height: 420px;
    }


    .contact-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }


    .location-grid {
        grid-template-columns: 1fr;
    }

}




@media (max-width: 800px) {

    .nav-container {
    min-height: 62px;
}


    .brand {
        min-width: 0;
        max-width: calc(100% - 60px);
    }


    .brand-main {
        font-size: 23px;
    }


    .brand-sub {
        font-size: 12px;
    }


    .brand-verse {
        font-size: 9px;

        letter-spacing: 1.5px;
    }


    .menu-toggle {
        display: block;

        flex: 0 0 auto;
    }


    

    .nav {
        position: absolute;

        top: 100%;

        left: 0;
        right: 0;

        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        justify-content: flex-start;

        gap: 0;

        padding: 0 20px;

        max-height: 0;

        overflow: hidden;

        background: rgba(22, 7, 2, 0.98);

        box-shadow:
            0 15px 30px rgba(0, 0, 0, 0.35);

        opacity: 0;

        visibility: hidden;

        transform: translateY(-10px);

        transition:
            max-height 0.35s ease,
            padding 0.35s ease,
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s ease;
    }


    .nav.open {
        max-height: 600px;

        padding: 10px 20px 20px;

        opacity: 1;

        visibility: visible;

        transform: translateY(0);
    }


    .nav a {
        width: 100%;

        min-height: 50px;

        display: flex;

        align-items: center;

        padding: 13px 5px;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.08);

        font-size: 17px;
    }


    .nav a:last-child {
        border-bottom: 0;
    }


    .nav a::after {
        display: none;
    }


    .nav a.active {
        color: var(--gold-light);
    }


    .leaders-grid {
        grid-template-columns: 1fr;

        max-width: 560px;
    }


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


    .footer-brand {
        grid-column: 1 / -1;
    }


    .hero-content {
        grid-template-columns: 1fr;
    }


    .hero-badge {
        display: none;
    }

}




@media (max-width: 600px) {

    html {
        scroll-padding-top: 75px;
    }


    body {
        width: 100%;

        min-width: 0;

        overflow-x: hidden;
    }


    .nav-container {
    min-height: 60px;
}

    .section {
        padding: 65px 0;
    }


    

    .section-heading {
        margin-bottom: 35px;
    }


    .section-heading h2,
    .leaders-header h2 {
        color: #c9a24d;

        font-size: 30px;

        line-height: 1.25;
    }


    .section-heading p,
    .leaders-header p {
        font-size: 15px;

        line-height: 1.7;
    }


    .eyebrow {
        font-size: 10px;

        letter-spacing: 2px;
    }


    

    .nav-container {
        min-height: 70px;
    }


    

    .hero {
        min-height: 100svh;
    }


    .hero-content {
        min-height: 100svh;

        padding: 110px 0 60px;
    }


    .hero .eyebrow {
        font-size: clamp(
            30px,
            10vw,
            48px
        );
    }


    .hero h1 {
        font-size: clamp(
            32px,
            10vw,
            45px
        );

        margin-top: 15px;
    }


    .ministry-line {
        font-size: 18px;

        line-height: 1.4;
    }


    .verse {
        font-size: 14px;

        line-height: 1.7;
    }

    .btn {
        width: 100%;

        min-height: 50px;

        font-size: 14px;

        padding: 0 16px;
    }


    

    .about-main {
        display: block;
    }


    .worship-image {
        width: 100%;

        margin-bottom: 30px;

        position: relative;

        top: auto;
    }


    .worship-image img {
        height: 280px;

        border-radius: 16px;
    }


    .about-content > h3 {
        font-size: 22px;

        line-height: 1.4;
    }


    .about-content > p {
        font-size: 15px;

        line-height: 1.75;
    }


    .about-block {
        margin-top: 15px;

        padding: 20px;

        border-radius: 12px;
    }


    .about-block h3 {
        font-size: 18px;

        line-height: 1.4;
    }


    .about-block p {
        font-size: 15px;

        line-height: 1.7;
    }


    .about-vision {
        padding: 30px 20px;

        border-radius: 14px;
    }


    .about-vision h3 {
        font-size: 27px;
    }


    .about-vision p {
        font-size: 14px;

        line-height: 1.75;
    }


    

    .leaders-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }


    .leader-card {
        border-radius: 15px;
    }


    .leader-image {
        height: 330px;
    }


    .leader-info {
        padding: 23px 18px 27px;
    }


    .leader-role {
        font-size: 9px;

        letter-spacing: 2px;
    }


    .leader-info h3 {
        font-size: 19px;

        line-height: 1.4;
    }


    

    .ministries-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .ministry-card {
        padding: 28px 20px;

        border-radius: 14px;
    }


    .ministry-card > i {
        font-size: 35px;

        margin-bottom: 15px;
    }


    .ministry-card h3 {
        font-size: 18px;
    }


    .ministry-card p {
        font-size: 15px;

        line-height: 1.65;
    }


    

    .schedule-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }


    .schedule-card {
        padding: 24px 20px;

        border-left-width: 3px;

        border-radius: 10px;
    }


    .schedule-card .day {
        font-size: 10px;

        letter-spacing: 1.7px;
    }


    .schedule-card strong {
        font-size: 19px;
    }


    .schedule-card p {
        font-size: 15px;
    }


    

    .gallery-slider {
        gap: 7px;
    }


    .gallery-track {
        height: 300px;

        border-radius: 13px;
    }


    .gallery-btn {
        flex: 0 0 38px;

        width: 38px;
        height: 38px;

        font-size: 12px;
    }


    

    .location-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .location-info {
        padding: 30px 20px;

        border-radius: 14px;
    }


    .location-info h3 {
        font-size: 22px;
    }


    .location-info p {
        font-size: 15px;

        line-height: 1.75;
    }


    .location-button {
        width: 100%;

        min-height: 48px;

        font-size: 14px;
    }


    .location-map {
        min-height: 320px;

        border-radius: 14px;
    }


    .location-map iframe {
        min-height: 320px;
    }


    

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }


    .contact-card {
        width: 100%;

        padding: 28px 20px;

        border-radius: 14px;
    }


    .contact-icon {
        width: 56px;
        height: 56px;

        margin-bottom: 15px;

        font-size: 23px;
    }


    .contact-card h3 {
        font-size: 19px;
    }


    .contact-card p {
        font-size: 15px;

        line-height: 1.65;
    }


    .contact-button {
        width: 100%;

        min-height: 48px;

        margin-top: 17px;
    }


    .contact-socials {
        margin-top: 17px;
    }


    .contact-socials a {
        width: 43px;
        height: 43px;
    }


    

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

        gap: 30px;

        padding: 45px 0;

        text-align: center;
    }


    .footer-brand {
        grid-column: auto;
    }


    .footer-brand .brand {
        align-items: center;
    }


    .footer-contact h3,
    .footer-social h3 {
        font-size: 17px;
    }


    .footer-contact p {
        font-size: 15px;
    }


    .social-links {
        justify-content: center;
    }


    .footer-bottom {
        padding: 18px 14px;
    }


    .footer-bottom p {
        font-size: 11px;

        line-height: 1.6;
    }

}




@media (max-width: 380px) {

    .container {
        width: calc(100% - 24px);
    }


    .brand-main {
        font-size: 20px;
    }


    .brand-sub {
        font-size: 10px;
    }


    .hero-content {
        padding-top: 100px;
    }


    .hero h1 {
        font-size: 33px;
    }


    .verse {
        font-size: 13px;
    }


    .section-heading h2,
    .leaders-header h2 {
        font-size: 27px;
    }


    .worship-image img {
        height: 250px;
    }


    .leader-image {
        height: 290px;
    }


    .gallery-track {
        height: 270px;
    }


    .gallery-btn {
        flex: 0 0 34px;

        width: 34px;
        height: 34px;
    }

}




@media (hover: none) and (pointer: coarse) {

    .btn,
    .contact-button,
    .location-button,
    .menu-toggle,
    .gallery-btn,
    .social-links a,
    .contact-socials a {
        -webkit-tap-highlight-color: transparent;
    }


    .leader-card:hover,
    .contact-card:hover,
    .ministry-card:hover {
        transform: none;
    }

}




@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }


    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }


    .reveal {
        opacity: 1;

        transform: none;
    }

}


.hero-bg{
    background-image:url("hero-fire.jpg") !important;
    background-size:cover !important;
    background-position:center center !important;
}

.hero-overlay{
    background:
        linear-gradient(90deg,rgba(17,5,1,.78) 0%,rgba(17,5,1,.50) 45%,rgba(17,5,1,.22) 72%,rgba(17,5,1,.38) 100%),
        linear-gradient(180deg,rgba(18,5,1,.15),rgba(18,5,1,.38)) !important;
}

.gallery-slide{cursor:zoom-in}
.gallery-hint{text-align:center;margin-top:9px;color:var(--muted);font-size:13px}
.gallery-hint i{color:var(--gold);margin-right:5px}

.lightbox{
    position:fixed;
    inset:0;
    z-index:20000;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:24px;
    background:rgba(7,2,0,.94);
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .22s ease,visibility .22s ease;
}
.lightbox.open{opacity:1;visibility:visible;pointer-events:auto}
.lightbox-image {
    width: auto;
    height: auto;

    max-width: 94vw;
    max-height: 90vh;

    object-fit: contain;

    border-radius: 8px;

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.65);

    cursor: default;
}
main img:not(.lightbox-image) {
    cursor: zoom-in;
}
.lightbox-close,.lightbox-nav{
    position:absolute;
    display:grid;
    place-items:center;
    border:1px solid rgba(255,215,120,.55);
    color:#fff8e9;
    background:rgba(38,12,3,.86);
    cursor:pointer;
    box-shadow:0 8px 25px rgba(0,0,0,.45);
}
.lightbox-close{top:22px;right:22px;width:46px;height:46px;border-radius:50%;font-size:20px}
.lightbox-nav{top:50%;transform:translateY(-50%);width:48px;height:48px;border-radius:50%;font-size:16px}
.lightbox-prev{left:22px}.lightbox-next{right:22px}
.lightbox-counter{
    position:absolute;bottom:18px;left:50%;transform:translateX(-50%);
    padding:6px 12px;border-radius:999px;background:rgba(25,7,2,.78);
    color:#ffe1a0;font-size:13px;font-weight:700;border:1px solid rgba(246,199,91,.25)
}
body.lightbox-open{overflow:hidden}

@media (min-width: 801px) {

    .nav-container {
        min-height: 70px !important;
    }

    .brand {
        min-width: 250px;
    }

    .brand-main {
        font-size: clamp(22px, 2vw, 30px);
    }

    .brand-sub {
        margin-top: 3px;
        font-size: clamp(12px, 1vw, 17px);
    }

    .brand-verse {
        margin-top: 4px;
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .nav a {
        padding: 8px 0;
        font-size: clamp(14px, 1.1vw, 18px);
    }

}

@media (max-width:800px){
    .lightbox{padding:12px}
    .lightbox-image{max-width:96vw;max-height:84vh;border-radius:7px}
    .lightbox-close{top:12px;right:12px;width:42px;height:42px}
    .lightbox-nav{width:40px;height:40px}
    .lightbox-prev{left:9px}.lightbox-next{right:9px}
}


.site-footer {
    background: #0d0301;
    color: #fff;
    padding-top: 70px;
}

.footer-main {
    width: min(1200px, 92%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 50px;
    padding-bottom: 50px;
}

.footer-main h2 {
    margin: 0 0 8px;
    color: var(--gold-light);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 32px;
}

.footer-main h3 {
    margin: 0 0 18px;
    color: var(--gold-light);
    font-family: "Barlow Condensed", sans-serif;
    font-size: 23px;
}

.footer-brand p {
    margin: 0;
}

.footer-brand > p:first-of-type {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.footer-description {
    max-width: 380px;
    margin-top: 18px !important;
    color: rgba(255,255,255,.72);
    line-height: 1.7;
}

.footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-socials a {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(201,162,77,.4);
    border-radius: 50%;
    color: var(--gold-light);
    background: rgba(201,162,77,.06);
    font-size: 18px;
    transition: var(--transition);
}

.footer-socials a:hover {
    color: #160702;
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-4px);
}

.footer-location p {
    margin: 0 0 12px;
    color: rgba(255,255,255,.75);
    line-height: 1.65;
}

.footer-location p i {
    margin-right: 7px;
    color: var(--gold-light);
}

.footer-map-button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 10px;
    padding: 11px 16px;
    border: 1px solid var(--gold);
    border-radius: 8px;
    color: var(--gold-light);
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.footer-map-button:hover {
    background: var(--gold);
    color: #160702;
}




.footer-map {
    display: flex;
    width: min(1200px, 92%);
    margin: 0 auto 45px;
    overflow: hidden;
    border: 1px solid rgba(201,162,77,.3);
    border-radius: 16px;
    box-shadow: 0 15px 45px rgba(0,0,0,.35);
}

.footer-map iframe {
    width: 100%;
    height: 320px;
    display: block;
    border: 0;
}




.footer-bottom {
    border-top: 1px solid rgba(201,162,77,.18);
    padding: 22px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: rgba(255,255,255,.58);
    font-size: 13px;
}

.footer-bottom p {
    margin: 0;
}