/* ======================================== */
/* ROOT VARIABLES & GLOBAL RESET            */
/* ======================================== */

:root {
    --orange:        #F19F53;
    --orange-dark:   #e08a3e;
    --orange-deep:   #c87232;
    --white:         #ffffff;
    --off-white:     #fafaf8;
    --light-bg:      #f5f3f0;
    --text-dark:     #2c2c2c;
    --text-medium:   #585858;
    --text-light:    #888888;
    --footer-bg:     #1c1c1c;
    --footer-alt:    #141414;
    --footer-text:   #c0c0c0;
    --border-light:  #e8e4df;
    --font-display:  'Playfair Display', Georgia, serif;
    --font-body:     'Lato', Arial, sans-serif;
    --font-ui:       'Montserrat', Arial, sans-serif;
    --container-max: 1200px;
    --radius:        4px;
    --transition:    0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition), opacity var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 28px;
}


/* ======================================== */
/* HEADER SECTION                           */
/* ======================================== */

/* --- Top Contact Bar --- */
.top-bar {
    background-color: #1a1a1a;
    height: 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 22px;
}

.top-bar-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1;
    color: #aaaaaa;
    white-space: nowrap;
}

.top-bar-link:hover {
    color: var(--orange);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: #888888;
    transition: color var(--transition);
}

.social-icon:hover {
    color: var(--orange);
}

/* --- Main Sticky Header --- */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
    height: 120px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: box-shadow var(--transition);
}

.main-header.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.13);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 32px;
}

/* Logo */
.logo {
    flex-shrink: 0;
    line-height: 0;
}

.logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
}

/* Navigation */
.main-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.7px;
    line-height: 1;
    color: var(--text-dark);
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: var(--radius);
    position: relative;
    transition: color var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background-color: var(--orange);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--orange-dark);
}

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

/* Donate Button */
.btn-donate {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    line-height: 1;
    color: var(--white);
    text-transform: uppercase;
    background-color: var(--orange);
    padding: 13px 26px;
    border-radius: var(--radius);
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color var(--transition), transform var(--transition);
}

.btn-donate:hover {
    background-color: var(--orange-dark);
    color: var(--white);
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: 1.5px solid var(--border-light);
    border-radius: var(--radius);
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: border-color var(--transition), background-color var(--transition);
}

.hamburger:hover {
    border-color: var(--orange);
    background-color: rgba(241, 159, 83, 0.06);
}

.hamburger.open {
    border-color: var(--orange);
    background-color: rgba(241, 159, 83, 0.08);
}

.hamburger-bars {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 22px;
    height: 16px;
    pointer-events: none;
}

.hamburger-bars span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background-color 0.3s ease;
    transform-origin: center;
}

.hamburger.open .hamburger-bars span {
    background-color: var(--orange-dark);
}

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

.hamburger.open .hamburger-bars span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* Mobile-only donate link in nav */
.nav-mobile-cta {
    display: none;
}

.nav-donate-mobile {
    display: block;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
    color: var(--white) !important;
    background-color: var(--orange);
    padding: 14px 16px;
    border-radius: var(--radius);
    text-align: center;
    margin-top: 8px;
    transition: background-color var(--transition);
}

.nav-donate-mobile:hover {
    background-color: var(--orange-dark) !important;
    color: var(--white) !important;
}


/* ======================================== */
/* HERO SECTION                             */
/* ======================================== */

.hero {
    position: relative;
    height: 750px;
    overflow: hidden;
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2000ms ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.75) 0%,
        rgba(0, 0, 0, 0.48) 35%,
        rgba(0, 0, 0, 0.25) 65%,
        rgba(0, 0, 0, 0.12) 100%
    );
    z-index: 1;
}

.hero-content {
    position: absolute;
    bottom: 115px;
    left: 0;
    right: 0;
    z-index: 2;
    text-align: center;
    padding: 0 24px;
}

.hero-eyebrow {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3.5px;
    line-height: 1;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 78px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 14px;
    text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.hero-title-accent {
    color: var(--orange);
    font-style: italic;
}

.hero-tagline {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 5px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.72);
    text-transform: uppercase;
    margin-bottom: 34px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    line-height: 1;
    color: var(--white);
    text-transform: uppercase;
    background-color: var(--orange);
    padding: 17px 38px;
    border-radius: var(--radius);
    transition: background-color var(--transition), transform var(--transition);
}

.btn-hero-primary:hover {
    background-color: var(--orange-dark);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-hero-outline {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    line-height: 1;
    color: var(--white);
    text-transform: uppercase;
    background-color: transparent;
    border: 2px solid rgba(255, 255, 255, 0.65);
    padding: 15px 52px;
    border-radius: var(--radius);
    transition: background-color var(--transition), border-color var(--transition), transform var(--transition);
}

.btn-hero-outline:hover {
    background-color: rgba(255, 255, 255, 0.14);
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero Dots */
.hero-dots {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.38);
    border: 2px solid rgba(255, 255, 255, 0.55);
    cursor: pointer;
    padding: 0;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.dot.active {
    background-color: var(--orange);
    border-color: var(--orange);
    transform: scale(1.25);
}

.dot:hover:not(.active) {
    background-color: rgba(255, 255, 255, 0.65);
    border-color: rgba(255, 255, 255, 0.8);
}


/* ======================================== */
/* SECTION 1: ORANGE SUNBEAM TITLE BAR      */
/* ======================================== */

.title-bar {
    position: relative;
    overflow: hidden;
    padding: 56px 0;
    background:
        linear-gradient(
            135deg,
            #b06020 0%,
            var(--orange-deep) 18%,
            var(--orange) 42%,
            #f7bc78 52%,
            var(--orange) 72%,
            #bf6e28 100%
        );
    text-align: center;
}

.title-bar-rays {
    position: absolute;
    inset: 0;
    background: repeating-conic-gradient(
        rgba(255, 255, 255, 0.07) 0deg 6deg,
        transparent 6deg 12deg
    );
    pointer-events: none;
}

.title-bar::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 300px;
    background: radial-gradient(
        ellipse,
        rgba(255, 245, 190, 0.5) 0%,
        rgba(255, 225, 120, 0.2) 35%,
        transparent 70%
    );
    pointer-events: none;
}

.title-bar-content {
    position: relative;
    z-index: 1;
}

.title-bar-heading {
    font-family: var(--font-display);
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 1.2;
    color: var(--white);
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
    margin-bottom: 10px;
}

.title-bar-sub {
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88);
    text-transform: uppercase;
}


/* ======================================== */
/* SECTION 2: WELCOME / BODY SECTION        */
/* ======================================== */

.welcome-section {
    padding: 96px 0 100px;
    background-color: var(--white);
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 64px;
    align-items: center;
}

.welcome-image {
    position: relative;
}

.welcome-image img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    object-position: left center;
    border-radius: var(--radius);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.14);
}

.welcome-image-badge {
    position: absolute;
    bottom: -22px;
    right: -22px;
    background-color: var(--orange);
    padding: 22px 30px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 8px 28px rgba(241, 159, 83, 0.45);
}

.badge-year {
    display: block;
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1;
    color: var(--white);
}

.badge-label {
    display: block;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    margin-top: 7px;
}

.welcome-text {
    padding-left: 10px;
}

.eyebrow {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3.5px;
    line-height: 1;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 16px;
}

.welcome-text h2 {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.lead {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.85;
    color: var(--text-medium);
    margin-bottom: 28px;
}

.confession-excerpt {
    background-color: var(--light-bg);
    border-left: 4px solid var(--orange);
    padding: 28px 32px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: 34px;
}

.confession-excerpt h3 {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1.6;
    color: var(--orange-dark);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.confession-excerpt p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.confession-excerpt blockquote {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0;
    line-height: 1.75;
    color: var(--text-dark);
    border: none;
    padding: 0;
    margin: 0;
}

.confession-excerpt blockquote cite {
    display: block;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 1.5px;
    line-height: 1;
    color: var(--orange-dark);
    text-transform: uppercase;
    margin-top: 12px;
}

/* Primary Button */
.btn-primary {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    line-height: 1;
    color: var(--white);
    text-transform: uppercase;
    background-color: var(--orange);
    padding: 15px 34px;
    border-radius: var(--radius);
    transition: background-color var(--transition), transform var(--transition);
}

.btn-primary:hover {
    background-color: var(--orange-dark);
    color: var(--white);
    transform: translateY(-2px);
}


/* ======================================== */
/* SECTION 3: SCRIPTURE IMAGE STRIP         */
/* ======================================== */

.image-strip {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.image-strip-photo {
    position: relative;
    height: 100%;
}

.image-strip-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.image-strip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.68) 0%,
        rgba(0, 0, 0, 0.38) 55%,
        transparent 100%
    );
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 88px;
}

.image-strip-overlay p {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0;
    line-height: 1.55;
    color: var(--white);
    max-width: 540px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
    margin-bottom: 12px;
}

.image-strip-overlay cite {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 2.5px;
    line-height: 1;
    color: var(--orange);
    text-transform: uppercase;
}


/* ======================================== */
/* SECTION 4: ACTION BAR                    */
/* ======================================== */

.action-bar {
    background-color: #282828;
    padding: 60px 0;
}

.action-bar-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.action-icon {
    flex-shrink: 0;
}

.action-text {
    flex: 1;
    min-width: 280px;
}

.action-text h2 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.3;
    color: var(--white);
    margin-bottom: 8px;
}

.action-text p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.58);
}

.action-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.btn-action-call,
.btn-action-email {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1;
    color: var(--white);
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 13px 22px;
    border-radius: var(--radius);
    transition: background-color var(--transition), border-color var(--transition);
}

.btn-action-call:hover,
.btn-action-email:hover {
    background-color: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.36);
    color: var(--white);
}

.btn-action-register {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    line-height: 1;
    color: var(--white);
    text-transform: uppercase;
    background-color: var(--orange);
    padding: 14px 28px;
    border-radius: var(--radius);
    transition: background-color var(--transition), transform var(--transition);
}

.btn-action-register:hover {
    background-color: var(--orange-dark);
    color: var(--white);
    transform: translateY(-1px);
}


/* ======================================== */
/* FAT FOOTER SECTION                       */
/* ======================================== */

.fat-footer {
    background-color: var(--footer-bg);
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1.2fr;
    gap: 60px;
}

.footer-heading {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    line-height: 1;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Footer Column 1 — Contact */
.footer-logo {
    height: 54px;
    width: auto;
    margin-bottom: 26px;
    filter: brightness(0) invert(1);
    opacity: 0.82;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin-bottom: 26px;
}

.footer-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--footer-text);
}

.footer-info-item svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--orange);
}

.footer-info-item span,
.footer-info-item a {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.65;
    color: var(--footer-text);
}

.footer-info-item a:hover {
    color: var(--orange);
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: var(--footer-text);
    transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}

.footer-social-btn:hover {
    background-color: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

/* Footer Column 2 — Schedule */
.schedule-list {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.schedule-item {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.schedule-item:first-child {
    padding-top: 0;
}

.schedule-day-label {
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    line-height: 1;
    color: var(--orange);
    text-transform: uppercase;
    margin-bottom: 7px;
}

.schedule-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.schedule-details strong {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.3;
    color: var(--white);
}

.schedule-details span {
    font-family: var(--font-ui);
    font-size: 22px;
    font-weight: 300;
    letter-spacing: -0.5px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.55);
}

.btn-footer-cta {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    line-height: 1;
    color: var(--white);
    text-transform: uppercase;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 11px 20px;
    border-radius: var(--radius);
    transition: border-color var(--transition), background-color var(--transition), color var(--transition);
}

.btn-footer-cta:hover {
    border-color: var(--orange);
    background-color: rgba(241, 159, 83, 0.1);
    color: var(--orange);
}

/* Footer Column 3 — Map */
.footer-map {
    overflow: hidden;
    border-radius: var(--radius);
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-map-address {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.5;
    color: var(--footer-text);
}

.footer-map-address svg {
    flex-shrink: 0;
    color: var(--orange);
}


/* ======================================== */
/* COPYRIGHT FOOTER BAR                     */
/* ======================================== */

.copyright-bar {
    background-color: var(--footer-alt);
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.copyright-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright-inner p {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.5;
    color: #606060;
    text-align: center;
}

.copyright-inner a {
    color: var(--orange);
    transition: color var(--transition);
}

.copyright-inner a:hover {
    color: var(--orange-dark);
}


/* ======================================== */
/* MOBILE STICKY CALL BAR                   */
/* ======================================== */

.mobile-call-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: var(--orange);
    color: var(--white);
    height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.22);
    transition: background-color var(--transition);
}

.mobile-call-bar:hover {
    background-color: var(--orange-dark);
    color: var(--white);
}


/* ======================================== */
/* DONATE / SUPPORT PAGE                    */
/* ======================================== */

.donate-section {
    padding: 90px 0 100px;
    background-color: var(--white);
}

.donate-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Left column */
.donate-text {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.donate-text .eyebrow {
    margin-bottom: 20px;
}

/* Motto */
.donate-motto {
    margin-bottom: 32px;
}

.donate-motto-line1 {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--text-dark);
}

.donate-motto-line2 {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    font-style: italic;
    letter-spacing: -1px;
    line-height: 1.1;
    color: var(--orange);
}

/* Confession excerpt */
.donate-confession {
    background-color: var(--light-bg);
    border-left: 4px solid var(--orange);
    padding: 28px 32px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin-bottom: 32px;
}

.donate-confession h3 {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1.6;
    color: var(--orange-dark);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.donate-confession p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.donate-confession blockquote {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0;
    line-height: 1.75;
    color: var(--text-dark);
    border: none;
    padding: 0;
    margin: 0;
}

.donate-confession blockquote cite {
    display: block;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 1.5px;
    line-height: 1;
    color: var(--orange-dark);
    text-transform: uppercase;
    margin-top: 12px;
}

/* Thank you text */
.donate-thank-you {
    margin-bottom: 32px;
}

.donate-thank-you p {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 14px;
}

.donate-thank-you p:last-child {
    margin-bottom: 0;
}

/* Giving verse */
.donate-verse {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background-color: var(--off-white);
    border-radius: var(--radius);
    padding: 22px 24px;
    margin-bottom: 36px;
}

.donate-verse svg {
    flex-shrink: 0;
    color: var(--orange);
    margin-top: 3px;
}

.donate-verse p {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.donate-verse cite {
    display: block;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 1.5px;
    line-height: 1;
    color: var(--orange-dark);
    text-transform: uppercase;
}

/* Donate CTA */
.donate-cta {
    margin-bottom: 32px;
}

.donate-cta-label {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* Custom donate button */
.donate-btn-custom {
    display: flex;
    align-items: center;
    gap: 18px;
    background: linear-gradient(135deg, var(--orange-deep) 0%, var(--orange) 55%, #f7b96a 100%);
    color: var(--white);
    padding: 20px 28px;
    border-radius: 10px;
    box-shadow: 0 8px 28px rgba(241, 159, 83, 0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    text-decoration: none;
    max-width: 380px;
}

.donate-btn-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 38px rgba(241, 159, 83, 0.55);
    filter: brightness(1.06);
    color: var(--white);
}

.donate-btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

.donate-btn-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
    flex: 1;
}

.donate-btn-text strong {
    font-family: var(--font-ui);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
    line-height: 1;
    color: var(--white);
}

.donate-btn-text small {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.78);
}

.donate-btn-arrow {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    opacity: 0.7;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.donate-btn-custom:hover .donate-btn-arrow {
    transform: translateX(4px);
    opacity: 1;
}

.donate-secure-note {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1;
    color: var(--text-light);
}

/* Mail-in address */
.donate-mail {
    padding-top: 28px;
    border-top: 1px solid var(--border-light);
}

.donate-mail-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    line-height: 1;
    color: var(--text-light);
    text-transform: uppercase;
    margin-bottom: 14px;
}

.donate-mail-label svg {
    color: var(--orange);
    flex-shrink: 0;
}

.donate-address {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.9;
    color: var(--text-medium);
    font-style: normal;
}

.donate-address strong {
    font-weight: 700;
    color: var(--text-dark);
}

/* Right column — image */
.donate-image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
}

.donate-image-wrap img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.donate-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.45) 50%,
        transparent 100%
    );
    padding: 40px 36px 36px;
}

.donate-image-overlay blockquote {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0;
    line-height: 1.6;
    color: var(--white);
    border: none;
    padding: 0;
    margin: 0 0 12px;
}

.donate-image-overlay cite {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 2px;
    line-height: 1;
    color: var(--orange);
    text-transform: uppercase;
}

/* Responsive donate */
@media (max-width: 900px) {
    .donate-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .donate-image {
        order: -1;
    }

    .donate-image-wrap img {
        height: 400px;
        object-position: center 20%;
    }

    .donate-motto-line1,
    .donate-motto-line2 {
        font-size: 38px;
    }
}

/* ======================================== */
/* GALLERY PAGE                             */
/* ======================================== */

/* Page Intro */
.gallery-intro {
    background-color: var(--white);
    border-bottom: 2px solid var(--border-light);
    padding: 72px 0 64px;
}

.gallery-intro-inner {
    max-width: 860px;
}

.gallery-intro-inner .eyebrow {
    margin-bottom: 16px;
}

.gallery-intro-inner h2 {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.gallery-intro-inner p {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.85;
    color: var(--text-medium);
    max-width: 720px;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0 80px;
    background-color: var(--off-white);
}

/* Tab Buttons */
.gallery-tabs {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 44px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-light);
}

.gallery-tab {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1;
    color: var(--text-medium);
    background-color: var(--white);
    border: 2px solid var(--border-light);
    padding: 14px 26px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.gallery-tab .tab-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    height: 22px;
    padding: 0 7px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0;
    background-color: var(--light-bg);
    color: var(--text-light);
    border-radius: 20px;
    transition: background-color var(--transition), color var(--transition);
}

.gallery-tab:hover {
    border-color: var(--orange);
    color: var(--orange-dark);
}

.gallery-tab.active {
    background-color: var(--orange);
    border-color: var(--orange);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(241, 159, 83, 0.35);
}

.gallery-tab.active .tab-count {
    background-color: rgba(255, 255, 255, 0.25);
    color: var(--white);
}

/* Gallery Grid */
.gallery-grid {
    display: none;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.gallery-grid.active {
    display: grid;
}

/* Gallery Thumbnail */
.gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
    background-color: var(--border-light);
    border: none;
    padding: 0;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.07),
        0 0 0 1px rgba(0, 0, 0, 0.04);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-item:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 12px 32px rgba(0, 0, 0, 0.14),
        0 0 0 2px rgba(241, 159, 83, 0.4);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at center,
        rgba(241, 159, 83, 0.55) 0%,
        rgba(0, 0, 0, 0.45) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 14px;
}

.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(12, 10, 8, 0.94);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.lightbox-stage {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 90vw;
    max-height: 80vh;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 78vh;
    width: auto;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: block;
}

.lightbox-img.loaded {
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 24px;
    right: 28px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: background-color var(--transition), transform var(--transition);
}

.lightbox-close:hover {
    background-color: rgba(255, 255, 255, 0.22);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    transition: background-color var(--transition), transform var(--transition);
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background-color: var(--orange);
    border-color: var(--orange);
}

.lightbox-prev:disabled,
.lightbox-next:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

.lightbox-prev:disabled:hover,
.lightbox-next:disabled:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.lightbox-footer {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-top: 18px;
}

.lightbox-counter {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
}

.lightbox-caption {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1;
    color: rgba(255, 255, 255, 0.4);
}

/* Gallery responsive */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item {
        border-radius: 10px;
    }

    .gallery-tabs {
        flex-wrap: wrap;
    }

    .gallery-tab {
        font-size: 12px;
        padding: 12px 20px;
    }

    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }

    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
    }
}

/* ======================================== */
/* CONFESSIONS OF FAITH PAGE                */
/* ======================================== */

/* Page Intro */
.confessions-intro {
    background-color: var(--white);
    border-bottom: 2px solid var(--border-light);
    padding: 72px 0 64px;
}

.confessions-intro-inner {
    max-width: 860px;
}

.confessions-intro-inner .eyebrow {
    margin-bottom: 16px;
}

.confessions-intro-inner h2 {
    font-family: var(--font-display);
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.confessions-intro-inner p {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 300;
    letter-spacing: 0;
    line-height: 1.85;
    color: var(--text-medium);
    max-width: 720px;
}

/* Jump Navigation */
.confessions-jump-nav {
    background-color: var(--white);
    border-bottom: 2px solid var(--border-light);
    padding: 18px 0;
    position: sticky;
    top: 120px;
    z-index: 100;
}

.confessions-jump-nav .container {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.jump-nav-label {
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1;
    color: var(--text-light);
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.jump-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.jump-nav-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 8px;
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1;
    color: var(--text-medium);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    background-color: var(--white);
    transition: background-color var(--transition), color var(--transition), border-color var(--transition);
}

.jump-nav-links a:hover {
    background-color: var(--orange);
    border-color: var(--orange);
    color: var(--white);
}

.jump-nav-divider {
    font-size: 16px;
    color: var(--border-light);
    margin: 0 4px;
    line-height: 1;
}

/* Main Content Area */
.confessions-content {
    padding: 70px 0 80px;
    background-color: var(--white);
}

/* Part Header */
.confessions-part-header {
    margin: 0 0 52px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--border-light);
}

.part-label {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    line-height: 1;
    color: var(--white);
    text-transform: uppercase;
    background-color: var(--orange);
    padding: 5px 12px;
    border-radius: 2px;
    margin-bottom: 14px;
}

.confessions-part-header h2 {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.confessions-part-header p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.7;
    color: var(--text-medium);
}

/* Part II Divider */
.confessions-part-divider {
    margin: 24px 0 52px;
    padding: 40px 0 32px;
    border-top: 2px solid var(--border-light);
    border-bottom: 2px solid var(--border-light);
}

.part-divider-inner h2 {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -0.3px;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.part-divider-inner p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.7;
    color: var(--text-medium);
}

/* Individual Section */
.confession-section {
    margin: 0 0 44px;
    padding-bottom: 44px;
    border-bottom: 1px solid var(--border-light);
    scroll-margin-top: 190px;
}

.confession-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.confession-section-header {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 20px;
}

.confession-section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background-color: var(--orange);
    color: var(--white);
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1;
    border-radius: 50%;
    margin-top: 3px;
}

.confession-section-num.bylaws-num {
    background-color: var(--text-dark);
}

.confession-section-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.3;
    color: var(--text-dark);
    padding-top: 8px;
}

/* Section Body */
.confession-section-body p {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.85;
    color: var(--text-medium);
    margin-bottom: 18px;
}

.confession-section-body p:last-child {
    margin-bottom: 0;
}

/* Scripture Verse */
.confession-verse {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0;
    line-height: 1.75;
    color: var(--text-dark);
    background-color: var(--off-white);
    border-left: 4px solid var(--orange);
    padding: 20px 28px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 18px 0;
}

.confession-verse cite {
    display: block;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 700;
    font-style: normal;
    letter-spacing: 1.5px;
    line-height: 1;
    color: var(--orange-dark);
    text-transform: uppercase;
    margin-top: 12px;
}

/* Back to top arrow */
.confession-back-top {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 20px;
    font-family: var(--font-ui);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    line-height: 1;
    color: var(--text-light);
    text-transform: uppercase;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: color var(--transition);
}

.confession-back-top svg {
    transition: transform 0.25s ease;
}

.confession-back-top:hover {
    color: var(--orange);
}

.confession-back-top:hover svg {
    transform: translateY(-3px);
}

/* Scripture Reference List */
.confession-refs {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1.7;
    color: var(--text-light);
    background-color: var(--light-bg);
    padding: 12px 18px;
    border-radius: var(--radius);
    margin-top: 10px;
}


/* ======================================== */
/* RESPONSIVE — 1024px                      */
/* ======================================== */

@media (max-width: 1024px) {
    .welcome-grid {
        gap: 52px;
    }

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

    .footer-map-col {
        grid-column: 1 / -1;
    }
}


/* ======================================== */
/* RESPONSIVE — 768px (Mobile)              */
/* ======================================== */

@media (max-width: 768px) {

    /* Top Bar — simplified on mobile */
    .top-bar {
        height: auto;
        padding: 7px 0;
    }

    .top-bar-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .top-bar-left {
        flex-direction: row;
        gap: 14px;
        align-items: center;
    }

    .top-bar-link {
        font-size: 11px;
    }

    /* Hide address and email on mobile — keep only phone */
    .top-bar-left .top-bar-link:first-child,
    .top-bar-left .top-bar-link:last-child {
        display: none;
    }

    /* Main Header */
    .main-header {
        height: 74px;
    }

    .logo-img {
        height: 50px;
    }

    /* Mobile Nav Dropdown */
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        border-bottom: 3px solid var(--orange);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.13);
        z-index: 999;
        padding: 20px 24px 28px;
    }

    .main-nav.open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 2px;
    }

    .nav-link {
        display: block;
        padding: 14px 16px;
        font-size: 14px;
        border-radius: var(--radius);
    }

    .nav-link::after {
        display: none;
    }

    .nav-link:hover,
    .nav-link.active {
        background-color: var(--light-bg);
        color: var(--orange-dark);
    }

    .btn-donate {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-mobile-cta {
        display: block;
    }

    /* Hero */
    .hero {
        height: 580px;
    }

    .hero-content {
        bottom: 90px;
        padding: 0 20px;
    }

    .hero-title {
        font-size: 46px;
        letter-spacing: -0.5px;
    }

    .hero-eyebrow {
        font-size: 11px;
        letter-spacing: 2.5px;
        margin-bottom: 14px;
    }

    .hero-tagline {
        font-size: 11px;
        letter-spacing: 4px;
        margin-bottom: 28px;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        font-size: 12px;
        padding: 13px 26px;
    }

    /* Title Bar */
    .title-bar {
        padding: 42px 0;
    }

    .title-bar-heading {
        font-size: 26px;
    }

    .title-bar-sub {
        font-size: 11px;
        letter-spacing: 1.5px;
    }

    /* Welcome Section */
    .welcome-section {
        padding: 60px 0 80px;
    }

    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .welcome-image img {
        height: 360px;
        object-position: left center;
    }

    .welcome-image-badge {
        bottom: -18px;
        right: 16px;
    }

    .welcome-text {
        padding-left: 0;
    }

    .welcome-text h2 {
        font-size: 30px;
    }

    .lead {
        font-size: 16px;
    }

    /* Image Strip */
    .image-strip {
        height: 280px;
    }

    .image-strip-overlay {
        padding: 0 28px;
    }

    .image-strip-overlay p {
        font-size: 21px;
    }

    /* Action Bar */
    .action-bar {
        padding: 48px 0;
    }

    .action-bar-inner {
        flex-direction: column;
        text-align: center;
        gap: 28px;
    }

    .action-icon {
        display: none;
    }

    .action-text h2 {
        font-size: 22px;
    }

    .action-buttons {
        justify-content: center;
    }

    /* Footer */
    .fat-footer {
        padding: 60px 0 40px;
    }

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

    .footer-map-col {
        grid-column: auto;
    }

    /* Mobile Call Bar */
    .mobile-call-bar {
        display: flex;
    }

    /* Confessions page */
    .confessions-jump-nav {
        top: 74px; /* below sticky mobile header */
    }

    .confession-section {
        scroll-margin-top: 150px;
    }

    .jump-nav-links a {
        min-width: 28px;
        height: 28px;
        font-size: 11px;
    }

    .confession-section-num {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .confession-section-title {
        font-size: 19px;
    }

    /* Push copyright above sticky call bar */
    .copyright-bar {
        padding-bottom: 62px;
    }
}


/* ======================================== */
/* RESPONSIVE — 480px (Small Mobile)        */
/* ======================================== */

@media (max-width: 480px) {

    .hero-title {
        font-size: 36px;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        display: block;
        width: 100%;
        max-width: 260px;
        text-align: center;
        padding: 16px;
    }

    .action-buttons {
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .btn-action-call,
    .btn-action-email,
    .btn-action-register {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        text-align: center;
    }
}
