/* ============================================================
   Christ Glory Family — Design System CSS
   Palette: Gold #D4A843 | Royal Blue #0F1F5C | Dark #080814
   Fonts: Cinzel | Cormorant Garamond | Inter
   ============================================================ */

/* ── CSS VARIABLES ─────────────────────────────────────────── */
:root {
    --gold:          #D4A843;
    --gold-light:    #F0C860;
    --gold-bright:   #FFD700;
    --gold-dark:     #A07820;
    --crimson:       #9B2335;
    --royal:         #0F1F5C;
    --royal-mid:     #1A3080;
    --cream:         #FEFBF3;
    --dark:          #080814;
    --dark-2:        #0D0D22;
    --dark-3:        #131330;
    --text-light:    #E8E0D0;
    --text-muted:    #A09880;

    --font-display:  'Cinzel', serif;
    --font-body:     'Cormorant Garamond', serif;
    --font-ui:       'Inter', sans-serif;

    --nav-h:         92px;
    --ticker-h:      36px;
    --radius:        4px;
    --radius-lg:     12px;
    --shadow:        0 4px 24px rgba(0,0,0,0.4);
    --shadow-gold:   0 0 24px rgba(212,168,67,0.25);
    --transition:    0.3s ease;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    background: var(--dark);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.7;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a  { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--gold);
    line-height: 1.2;
    letter-spacing: 0.04em;
}
h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }
p  { font-family: var(--font-body); font-size: 1.1rem; color: var(--text-light); }

.section-label {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.75rem;
}

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.section {
    padding: 5rem 0;
}
.section--dark  { background: var(--dark); }
.section--dark2 { background: var(--dark-2); }
.section--dark3 { background: var(--dark-3); }
.section--cream { background: var(--cream); color: var(--royal); }
.section--cream h1,
.section--cream h2,
.section--cream h3 { color: var(--royal); }
.section--cream p   { color: #2a2a4a; }

.section__header {
    text-align: center;
    margin-bottom: 3rem;
}
.section__divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    margin: 1rem auto;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
    display: inline-block;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.85rem 2rem;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}
.btn--gold {
    background: var(--gold);
    color: var(--dark);
    border-color: var(--gold);
}
.btn--gold:hover {
    background: var(--gold-light);
    color: var(--dark);
    border-color: var(--gold-light);
    box-shadow: var(--shadow-gold);
}
.btn--outline {
    background: transparent;
    color: var(--gold);
    border-color: var(--gold);
}
.btn--outline:hover {
    background: var(--gold);
    color: var(--dark);
}
.btn--crimson {
    background: var(--crimson);
    color: #fff;
    border-color: var(--crimson);
}
.btn--crimson:hover { background: #b52a3f; border-color: #b52a3f; }
.btn--sm { padding: 0.5rem 1.2rem; font-size: 0.75rem; }
.btn--lg { padding: 1.1rem 2.8rem; font-size: 0.95rem; }

/* ── ANNOUNCEMENT TICKER ─────────────────────────────────────── */
.ticker-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    height: var(--ticker-h);
    background: var(--royal);
    border-bottom: 1px solid rgba(212,168,67,0.3);
    overflow: hidden;
    display: flex;
    align-items: center;
}
.ticker-track {
    display: inline-block;
    white-space: nowrap;
    animation: ticker 45s linear infinite;
}
.ticker-track span {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    color: var(--gold-light);
    padding: 0 2rem;
}
@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: var(--ticker-h);
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    background: rgba(8,8,20,0.96);
    border-bottom: 1px solid rgba(212,168,67,0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
    background: rgba(8,8,20,0.99);
    box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.navbar__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 1.5rem;
}
.navbar__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}
.navbar__logo img {
    height: 52px;
    width: auto;
    object-fit: contain;
}
.navbar__logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
    letter-spacing: 0.06em;
    white-space: nowrap;
}
.navbar__nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.navbar__link {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius);
    text-decoration: none;
    transition: all var(--transition);
    position: relative;
}
.navbar__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}
.navbar__link:hover { color: var(--gold); }
.navbar__link:hover::after,
.navbar__link--active::after { width: 70%; }
.navbar__link--active { color: var(--gold); }

/* Hamburger */
.navbar__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.navbar__hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--gold);
    transition: all var(--transition);
    border-radius: 2px;
}

/* Mobile Nav Drawer */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--dark-2);
    z-index: 1100;
    padding: 5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-left: 1px solid rgba(212,168,67,0.2);
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-nav.open { right: 0; }
.mobile-nav__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
}
.mobile-nav__link {
    font-family: var(--font-ui);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    padding: 0.85rem 1rem;
    border-radius: var(--radius);
    border-left: 2px solid transparent;
    transition: all var(--transition);
}
.mobile-nav__link:hover,
.mobile-nav__link--active {
    color: var(--gold);
    border-left-color: var(--gold);
    background: rgba(212,168,67,0.06);
}
.mobile-nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 1099;
}
.mobile-nav__overlay.open { display: block; }

/* ── HERO SECTION ────────────────────────────────────────────── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark);
}
.hero__bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(8,8,20,0.85) 0%,
        rgba(15,31,92,0.6) 50%,
        rgba(8,8,20,0.9) 100%
    );
}
.hero__particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.particle {
    position: absolute;
    bottom: -10px;
    width: 4px;
    height: 4px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: floatUp linear infinite;
}
@keyframes floatUp {
    0%   { transform: translateY(0) scale(1);   opacity: 0; }
    10%  { opacity: 0.6; }
    90%  { opacity: 0.2; }
    100% { transform: translateY(-100vh) scale(0); opacity: 0; }
}
.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 1.5rem;
    animation: fadeUp 1.2s ease both;
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}
.hero__theme {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    display: block;
    animation: fadeUp 1.2s 0.2s ease both;
}
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    animation: fadeUp 1.2s 0.3s ease both;
}
.hero__title span { color: var(--gold); }
.hero__subtitle {
    font-family: var(--font-body);
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 2.5rem;
    animation: fadeUp 1.2s 0.5s ease both;
}
.hero__cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1.2s 0.7s ease both;
}
.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-family: var(--font-ui);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    animation: fadeUp 1.2s 1s ease both;
}
.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50%       { opacity: 0.4; transform: scaleY(0.6); }
}

/* ── SERVICE TIMES GRID ──────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.service-card {
    background: var(--dark-3);
    border: 1px solid rgba(212,168,67,0.15);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}
.service-card:hover { border-color: rgba(212,168,67,0.4); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-card__icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}
.service-card__day {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--gold);
    margin-bottom: 0.25rem;
}
.service-card__name {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}
.service-card__time {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ── ABOUT SECTION ───────────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-grid__image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.about-grid__image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}
.about-grid__image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(212,168,67,0.3);
    border-radius: var(--radius-lg);
    pointer-events: none;
}
.about-grid__text h2 { margin-bottom: 1.5rem; }
.about-grid__text p  { margin-bottom: 1rem; }

/* ── GALLERY GRID ────────────────────────────────────────────── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1rem;
}
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    aspect-ratio: 4/3;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8,8,20,0.8), transparent);
    opacity: 0;
    transition: opacity var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1rem;
}
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__caption {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: #fff;
}

/* ── TESTIMONIES ─────────────────────────────────────────────── */
.testimonies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}
.testimony-card {
    background: var(--dark-3);
    border: 1px solid rgba(212,168,67,0.12);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: border-color var(--transition), transform var(--transition);
}
.testimony-card:hover {
    border-color: rgba(212,168,67,0.35);
    transform: translateY(-3px);
}
.testimony-card__quote {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.testimony-card__text {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}
.testimony-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.testimony-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(212,168,67,0.3);
}
.testimony-card__name {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.05em;
}

/* ── GIVING SECTION ──────────────────────────────────────────── */
.giving-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.giving-card {
    background: var(--dark-3);
    border: 1px solid rgba(212,168,67,0.15);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition);
}
.giving-card:hover {
    border-color: rgba(212,168,67,0.4);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}
.giving-card__icon { font-size: 2.5rem; margin-bottom: 1.25rem; }
.giving-card__title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}
.giving-card__detail {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}
.giving-card__account {
    font-family: var(--font-ui);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.1em;
}
.copy-btn {
    background: transparent;
    border: 1px solid rgba(212,168,67,0.4);
    color: var(--gold);
    font-family: var(--font-ui);
    font-size: 0.72rem;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 0.75rem;
    transition: all var(--transition);
    letter-spacing: 0.08em;
}
.copy-btn:hover { background: var(--gold); color: var(--dark); }
#paypal-button-container { margin-top: 1.5rem; }

/* ── CELL GROUPS ─────────────────────────────────────────────── */
.cellgroups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}
.cellgroup-card {
    background: var(--dark-3);
    border: 1px solid rgba(212,168,67,0.12);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition);
}
.cellgroup-card:hover {
    border-color: rgba(212,168,67,0.35);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}
.cellgroup-card__image {
    height: 180px;
    overflow: hidden;
    background: var(--royal);
}
.cellgroup-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.cellgroup-card:hover .cellgroup-card__image img { transform: scale(1.05); }
.cellgroup-card__body { padding: 1.75rem; }
.cellgroup-card__name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--gold);
    margin-bottom: 1rem;
}
.cellgroup-card__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.cellgroup-card__meta svg {
    width: 14px;
    height: 14px;
    stroke: var(--gold);
    fill: none;
    flex-shrink: 0;
}
.cellgroup-card__desc {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-top: 1rem;
    line-height: 1.6;
}
.cellgroup-card__leader {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    color: var(--gold-dark);
    margin-top: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ── CONTACT SECTION ─────────────────────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}
.contact-info__item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}
.contact-info__icon {
    width: 44px;
    height: 44px;
    background: rgba(212,168,67,0.1);
    border: 1px solid rgba(212,168,67,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-info__icon svg {
    width: 18px; height: 18px;
    stroke: var(--gold); fill: none; stroke-width: 2;
}
.contact-info__label {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 0.25rem;
}
.contact-info__value { font-size: 1rem; color: var(--text-light); }

/* Contact Form */
.form-group { margin-bottom: 1.5rem; }
.form-label {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}
.form-control {
    width: 100%;
    background: var(--dark-3);
    border: 1px solid rgba(212,168,67,0.2);
    border-radius: var(--radius);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 1rem;
    padding: 0.85rem 1rem;
    transition: border-color var(--transition);
    outline: none;
    -webkit-appearance: none;
}
.form-control:focus { border-color: var(--gold); }
.form-control::placeholder { color: var(--text-muted); }
textarea.form-control { min-height: 150px; resize: vertical; }

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
    position: relative;
    padding: 5rem 0 4rem;
    text-align: center;
    background: linear-gradient(180deg, var(--dark-3) 0%, var(--dark) 100%);
    border-bottom: 1px solid rgba(212,168,67,0.15);
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ── NEWSLETTER BANNER ───────────────────────────────────────── */
.newsletter-banner {
    background: var(--royal);
    padding: 3rem 0;
    border-top: 1px solid rgba(212,168,67,0.2);
}
.newsletter-banner__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}
.newsletter-banner__title {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.4rem;
}
.newsletter-banner__text p { color: var(--text-light); font-size: 1rem; }
.newsletter-banner__form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    flex: 1;
    max-width: 480px;
}
.newsletter-banner__input {
    flex: 1;
    min-width: 200px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(212,168,67,0.3);
    border-radius: var(--radius);
    color: #fff;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    padding: 0.8rem 1rem;
    outline: none;
    transition: border-color var(--transition);
}
.newsletter-banner__input:focus { border-color: var(--gold); }
.newsletter-banner__feedback { font-family: var(--font-ui); font-size: 0.8rem; }
.newsletter-banner__feedback--ok  { color: #5dba6f; }
.newsletter-banner__feedback--err { color: #e05050; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
    background: var(--dark-2);
    border-top: 1px solid rgba(212,168,67,0.15);
    padding: 4rem 0 0;
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(212,168,67,0.1);
}
.footer__logo { height: 52px; width: auto; margin-bottom: 1rem; }
.footer__brand-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 0.4rem;
}
.footer__theme {
    font-family: var(--font-ui);
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
    margin-bottom: 1.25rem;
    font-style: italic;
}
.footer__social { display: flex; gap: 0.75rem; }
.footer__social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212,168,67,0.3);
    border-radius: 50%;
    color: var(--text-muted);
    transition: all var(--transition);
}
.footer__social-link svg { width: 16px; height: 16px; }
.footer__social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer__col-title {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}
.footer__links li { margin-bottom: 0.6rem; }
.footer__links a {
    font-family: var(--font-ui);
    font-size: 0.88rem;
    color: var(--text-muted);
    transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }
.footer__contact li {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 0.85rem;
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: var(--text-muted);
}
.footer__contact svg { width: 16px; height: 16px; stroke: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer__contact a { color: var(--text-muted); }
.footer__contact a:hover { color: var(--gold); }
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--text-muted);
    flex-wrap: wrap;
    gap: 0.5rem;
}
.footer__credit a { color: var(--gold); }
.footer__credit a:hover { color: var(--gold-light); }

/* ── ALERT / FLASH ───────────────────────────────────────────── */
.alert {
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    font-family: var(--font-ui);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
.alert--success { background: rgba(93,186,111,0.1);  border: 1px solid rgba(93,186,111,0.4);  color: #5dba6f; }
.alert--error   { background: rgba(224,80,80,0.1);   border: 1px solid rgba(224,80,80,0.4);   color: #e05050; }
.alert--info    { background: rgba(212,168,67,0.1);  border: 1px solid rgba(212,168,67,0.4);  color: var(--gold); }

/* ── UTILITY ─────────────────────────────────────────────────── */
.text-center  { text-align: center; }
.text-gold    { color: var(--gold); }
.mt-1 { margin-top: 0.5rem;  } .mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem;  } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ── LIGHTBOX ────────────────────────────────────────────────── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox__img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); }
.lightbox__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 2rem;
    cursor: pointer;
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .about-grid   { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .navbar__nav  { display: none; }
    .navbar__hamburger { display: flex; }
    .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
    .newsletter-banner__inner { flex-direction: column; align-items: flex-start; }
    .newsletter-banner__form  { max-width: 100%; width: 100%; }
    .hero__title { font-size: clamp(2rem, 10vw, 3.5rem); }
    .section { padding: 3.5rem 0; }
    .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .services-grid { grid-template-columns: 1fr; }
    .giving-methods { grid-template-columns: 1fr; }
    .cellgroups-grid { grid-template-columns: 1fr; }
    .testimonies-grid { grid-template-columns: 1fr; }
    .hero__cta { flex-direction: column; align-items: center; }
    .footer__bottom { flex-direction: column; text-align: center; }
}
