/* Bomb Shelter Church — public site styles. Modern glossy design. */

:root {
    --asphalt-950: #0D0B09;
    --asphalt-900: #1A1614;
    --asphalt-800: #2A2420;
    --asphalt-700: #3D3530;
    --bone-50: #FFFCF8;
    --bone-100: #FAF7F2;
    --bone-200: #F0EBE2;
    --bone-300: #EDE6DB;
    --ink-900: #1C1917;
    --ember-600: #D14E0A;
    --ember-500: #E8590C;
    --ember-400: #F76D1A;
    --ember-300: #FFA94D;
    --ember-200: #FFD4A8;
    --glass-white: rgba(255, 252, 248, 0.06);
    --glass-white-md: rgba(255, 252, 248, 0.10);
    --glass-white-lg: rgba(255, 252, 248, 0.15);
    --glass-border: rgba(255, 252, 248, 0.12);
    --glass-border-md: rgba(255, 252, 248, 0.22);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    --glow-ember: 0 0 40px rgba(232, 89, 12, 0.25);

    --font-display: "Inter", "Bricolage Grotesque", system-ui, sans-serif;
    --font-body: "Inter", "Source Sans 3", system-ui, sans-serif;

    --content-max: 1200px;
    --section-pad: clamp(4rem, 9vw, 8rem);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-pill: 999px;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    color-scheme: dark;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
body {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--bone-100);
    background: var(--asphalt-950);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 0.5rem;
    letter-spacing: -0.025em;
}
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }

.sr-only {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
    position: absolute; left: 0.5rem; top: -3rem;
    background: var(--ember-500); color: var(--bone-50);
    padding: 0.6rem 1rem; border-radius: var(--radius-sm);
    z-index: 1000; transition: top var(--transition-fast);
    font-weight: 600;
}
.skip-link:focus { top: 0.5rem; }

:focus-visible {
    outline: 3px solid var(--ember-400);
    outline-offset: 3px;
}

.content-col {
    max-width: var(--content-max);
    margin-inline: auto;
    padding-inline: 1.5rem;
}

.ember-line {
    display: block;
    width: 80px;
    height: 3px;
    margin: 0.75rem 0 1.5rem;
    background: linear-gradient(90deg, var(--ember-500), var(--ember-300), transparent);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(232, 89, 12, 0.4);
}

.detail-label {
    font-family: var(--font-body);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.72rem;
    color: var(--ember-400);
    margin: 0 0 0.25rem;
}

.pill {
    display: inline-block;
    padding: 0.45rem 1.2rem;
    border-radius: var(--radius-pill);
    background: var(--glass-white-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border-md);
    color: var(--bone-100);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.04em;
    margin-bottom: 1.25rem;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-pill);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-smooth);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}
.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255,255,255,0.15) 0%, transparent 50%);
    pointer-events: none;
}
.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn--ember {
    background: linear-gradient(135deg, var(--ember-500), var(--ember-400));
    color: var(--bone-50);
    box-shadow: 0 4px 16px rgba(232, 89, 12, 0.35), inset 0 1px 0 rgba(255,255,255,0.2);
}
.btn--ember:hover {
    background: linear-gradient(135deg, var(--ember-400), var(--ember-300));
    box-shadow: 0 8px 28px rgba(232, 89, 12, 0.45), inset 0 1px 0 rgba(255,255,255,0.25);
}

.btn--ghost {
    background: var(--glass-white);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--bone-100);
    border: 1px solid var(--glass-border-md);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}
.btn--ghost::before { display: none; }
.btn--ghost:hover {
    background: var(--glass-white-lg);
    border-color: rgba(255, 252, 248, 0.35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-copy {
    background: var(--glass-white-md);
    color: var(--bone-100);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-pill);
    padding: 0.35rem 1rem;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    margin-left: 0.75rem;
    transition: all var(--transition-fast);
}
.btn-copy::before { display: none; }
.btn-copy:hover {
    border-color: var(--ember-500);
    color: var(--ember-300);
    background: rgba(232, 89, 12, 0.12);
}

/* --- Sections --- */
.section {
    padding-block: var(--section-pad);
}
.section--alt {
    background: var(--asphalt-900);
}
.section--dark {
    background: var(--asphalt-950);
    color: var(--bone-100);
}
.section--dark h2 { color: var(--bone-100); }
.section h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }

.prose p:last-child { margin-bottom: 0; }
.prose { color: var(--bone-200); line-height: 1.75; }

/* --- Header / nav --- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(13, 11, 9, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    transition: all var(--transition-smooth);
}
.site-header.is-scrolled {
    background: rgba(13, 11, 9, 0.92);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    border-bottom-color: transparent;
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: 0.9rem;
}
.site-logo {
    text-decoration: none;
    color: var(--bone-100);
    font-family: var(--font-display);
    line-height: 1.1;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}
.site-logo__image { display: block; height: 40px; width: auto; max-width: 160px; object-fit: contain; }
.site-logo__line1 {
    display: block; font-weight: 800; font-size: 1.2rem;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, var(--bone-100), var(--bone-200));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.site-logo__line2 {
    display: block; font-weight: 700; font-size: 0.65rem;
    letter-spacing: 0.3em; color: var(--bone-300);
}
.site-logo__dot {
    display: inline-block; width: 6px; height: 6px; border-radius: 50%;
    background: var(--ember-500); margin-left: 0.4em;
    box-shadow: 0 0 8px var(--ember-500);
}

.site-nav ul { display: flex; gap: 0.25rem; }
.site-nav__link {
    position: relative;
    text-decoration: none;
    color: var(--bone-300);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-pill);
    transition: all var(--transition-fast);
}
.site-nav__link::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--ember-500), var(--ember-300));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-smooth);
}
.site-nav__link:hover {
    color: var(--bone-100);
    background: var(--glass-white);
}
.site-nav__link:hover::after, .site-nav__link.is-active::after { transform: scaleX(1); }
.site-nav__link.is-active { color: var(--bone-100); }

.menu-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 48px;
    height: 48px;
    background: var(--glass-white);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-fast);
}
.menu-toggle__bar {
    width: 22px; height: 2px; background: var(--bone-100);
    border-radius: 2px;
    transition: all var(--transition-smooth);
}
.menu-toggle:hover {
    background: var(--glass-white-md);
    border-color: var(--glass-border-md);
}
.menu-toggle:hover .menu-toggle__bar { background: var(--ember-300); }

.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(13, 11, 9, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    color: var(--bone-100);
    z-index: 200;
    display: none;
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}
.mobile-menu.is-open { display: flex; opacity: 1; }
.mobile-menu ul { display: flex; flex-direction: column; gap: 0.75rem; text-align: center; }
.mobile-menu__link {
    text-decoration: none; color: var(--bone-100);
    font-family: var(--font-display); font-size: 1.8rem; font-weight: 800;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    transition: all var(--transition-fast);
    display: block;
}
.mobile-menu__link:hover {
    background: var(--glass-white);
    color: var(--ember-300);
}
.mobile-menu__link.is-active { color: var(--ember-500); }
.mobile-menu__phone {
    display: block; text-align: center; margin-top: 3rem;
    color: var(--ember-300); font-weight: 700; font-size: 1.25rem;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-pill);
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    transition: all var(--transition-fast);
}
.mobile-menu__phone:hover {
    background: var(--glass-white-md);
    border-color: var(--ember-500);
}

@media (max-width: 860px) {
    .site-nav { display: none; }
    .menu-toggle { display: inline-flex; }
}

/* --- Hero --- */
.hero, .page-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 92svh;
    overflow: hidden;
    color: var(--bone-100);
}
.page-hero--short { min-height: 52svh; align-items: center; }
.page-hero--short.is-portrait-hero { min-height: 78svh; }

.hero__image, .section-bg-image {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover; z-index: 0;
    filter: brightness(0.85) contrast(1.05);
    transition: transform 8s ease-out;
}
.hero__overlay, .section-bg-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        180deg,
        rgba(13,11,9,0.2) 0%,
        rgba(13,11,9,0.35) 40%,
        rgba(13,11,9,0.7) 75%,
        rgba(13,11,9,0.95) 100%
    );
}
.hero__image.is-portrait, .section-bg-image.is-portrait { object-position: center 15%; }
.page-hero .hero__overlay {
    background: linear-gradient(180deg, rgba(13,11,9,0.4) 0%, rgba(13,11,9,0.75) 100%);
}
.hero__content, .page-hero__content {
    position: relative; z-index: 2;
    padding-block: 3.5rem;
}
.hero__title {
    font-size: clamp(2.8rem, 7.5vw, 5.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    background: linear-gradient(180deg, var(--bone-50) 30%, var(--bone-300) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.page-hero__content h1 {
    font-size: clamp(2rem, 5.5vw, 3.5rem);
    font-weight: 800;
    margin: 0;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    background: linear-gradient(180deg, var(--bone-50) 30%, var(--bone-300) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero__subtitle {
    font-size: 1.2rem;
    max-width: 42ch;
    margin-bottom: 2rem;
    color: var(--bone-200);
    text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

/* --- Welcome / two-column --- */
.section--welcome {
    background: linear-gradient(180deg, var(--asphalt-950) 0%, var(--asphalt-900) 100%);
}
.welcome__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}
.welcome__image-wrap {
    position: relative;
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3 / 2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.welcome__image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    border: 1px solid var(--glass-border);
    pointer-events: none;
}
.welcome__image {
    position: absolute; inset: 0; width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}
.welcome__image-wrap:hover .welcome__image {
    transform: scale(1.04);
}
.welcome__copy {
    padding: 1rem 0;
}
.welcome__grid.has-portrait-image { grid-template-columns: 0.8fr 1.2fr; align-items: start; }
.welcome__image-wrap.is-portrait { aspect-ratio: 3 / 4; max-width: 420px; margin-inline: auto; }
@media (max-width: 780px) {
    .welcome__grid, .welcome__grid.has-portrait-image { grid-template-columns: 1fr; }
    .welcome__image-wrap { max-width: 100%; }
}

/* --- Visit strip --- */
.visit__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.visit__fact {
    padding: 2rem;
    background: var(--glass-white);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: all var(--transition-smooth);
}
.visit__fact:hover {
    background: var(--glass-white-md);
    border-color: var(--glass-border-md);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}
.visit__fact-value {
    font-size: 1.35rem;
    font-weight: 700;
    font-family: var(--font-display);
    color: var(--bone-100);
}
.visit__fact-value a { text-decoration: none; transition: color var(--transition-fast); }
.visit__fact-value a:hover { color: var(--ember-300); }
@media (max-width: 780px) {
    .visit__grid { grid-template-columns: 1fr; gap: 1.25rem; }
    .visit__fact { padding: 1.5rem; }
}

/* --- Project cards / grid --- */
.section--upcoming {
    background: linear-gradient(180deg, var(--asphalt-950) 0%, var(--asphalt-900) 100%);
}
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.75rem;
    margin-top: 1rem;
}
.project-card {
    background: var(--asphalt-800);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all var(--transition-smooth);
    position: relative;
}
.project-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, var(--glass-white) 0%, transparent 40%);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}
.project-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 89, 12, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), var(--glow-ember);
}
.project-card:hover::before { opacity: 1; }
.project-card__image-wrap {
    position: relative;
    width: 100%; aspect-ratio: 16 / 10;
    background: var(--asphalt-700);
    overflow: hidden;
}
.project-card__image {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.project-card:hover .project-card__image { transform: scale(1.06); }
.project-card__image-wrap, .project-card { will-change: transform; }
.project-card__image-wrap--placeholder { display: flex; align-items: center; justify-content: center; }
.project-card__image-wrap--placeholder .ember-line { margin: 0; width: 96px; }
.project-card__body { padding: 1.4rem 1.5rem 1.6rem; position: relative; z-index: 1; }
.project-card__title { font-size: 1.2rem; margin-bottom: 0.35rem; }
.project-card__summary { color: var(--bone-300); font-size: 0.95rem; }
.project-card__toggle {
    cursor: pointer;
    color: var(--ember-400);
    font-weight: 700;
    list-style: none;
    display: inline-block;
    margin-top: 0.35rem;
    transition: color var(--transition-fast);
}
.project-card__toggle:hover { color: var(--ember-300); }
.project-card__toggle::-webkit-details-marker { display: none; }
.project-card__toggle::after { content: " \2193"; transition: transform var(--transition-fast); display: inline-block; }
details[open] .project-card__toggle::after { content: " \2191"; }
.project-card__panel {
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
    margin-top: 1rem;
}
.detail-list { display: grid; grid-template-columns: auto 1fr; gap: 0.4rem 1.25rem; margin-bottom: 1rem; }
.detail-list dt {
    font-family: var(--font-body); font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.7rem;
    color: var(--ember-400);
}
.detail-list dd { margin: 0; }
.project-card__description p:last-child { margin-bottom: 0; }
.section__more { margin-top: 1.5rem; }
.section__more a {
    font-weight: 700; color: var(--ember-400); text-decoration: none;
    transition: all var(--transition-fast);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

/* --- Spotify links (Home) --- */
.spotify-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
}
.spotify-list__item a {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    color: var(--bone-100);
    text-decoration: none;
    font-weight: 700;
    transition: all var(--transition-smooth);
}
.spotify-list__item a:hover {
    border-color: #1DB954;
    background: var(--glass-white-lg);
    transform: translateY(-3px);
}
.spotify-list__item svg { width: 28px; height: 28px; flex-shrink: 0; fill: #1DB954; }
.section__more a:hover {
    color: var(--ember-300);
    border-bottom-color: var(--ember-300);
}

/* --- Pastors --- */
.intro-block { max-width: 65ch; margin: 0 auto 3rem; text-align: center; }
.intro-block .ember-line { margin-inline: auto; }
.pastor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 2rem;
}
.pastor-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--glass-white);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: all var(--transition-smooth);
}
.pastor-card:hover {
    transform: translateY(-6px);
    border-color: var(--glass-border-md);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.pastor-card__photo-wrap {
    position: relative;
    width: 100%; aspect-ratio: 3 / 4;
    border-radius: var(--radius-sm); margin-bottom: 1rem;
    background: var(--asphalt-700);
    overflow: hidden;
}
.pastor-card__photo {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.pastor-card:hover .pastor-card__photo {
    transform: scale(1.03);
}
.pastor-card__photo-wrap--placeholder {
    display: flex; align-items: center; justify-content: center;
    color: var(--bone-100); font-family: var(--font-display); font-weight: 800; font-size: 2rem;
}
.pastor-card__name { font-size: 1.1rem; margin-bottom: 0.15rem; }

/* --- Timeline (About — "Our History") --- */
.timeline-section__heading { text-align: center; }
.ember-line--center { margin-inline: auto; }

.timeline {
    list-style: none;
    margin: 2.5rem auto 0;
    max-width: 640px;
    padding-left: 2.5rem;
    border-left: 3px solid var(--glass-border);
}
.timeline__item { position: relative; padding-bottom: 2.5rem; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__item::before {
    content: "";
    position: absolute;
    left: -2.625rem;
    top: 0.4rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--ember-500);
    box-shadow: 0 0 12px rgba(232, 89, 12, 0.5);
    border: 2px solid var(--asphalt-900);
}
.timeline__date { margin-bottom: 0.25rem; }
.timeline__title { font-size: 1.2rem; margin-bottom: 0.4rem; }
.timeline__item .prose p:last-child { margin-bottom: 0; }

/* --- Pull quote (About) --- */
.section--dark.pull-quote {
    background: linear-gradient(135deg, var(--asphalt-950) 0%, var(--asphalt-800) 100%);
}
.pull-quote { text-align: center; }
.pull-quote blockquote {
    margin: 0; font-family: var(--font-display); font-weight: 800;
    font-size: clamp(1.75rem, 4vw, 3rem); max-width: 22ch; margin-inline: auto;
    background: linear-gradient(135deg, var(--bone-100) 0%, var(--ember-200) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

/* --- Donation section --- */
.donate {
    position: relative; padding-block: var(--section-pad); color: var(--bone-100); overflow: hidden;
    background: linear-gradient(135deg, var(--asphalt-900) 0%, var(--asphalt-800) 100%);
}
.donate::before {
    content: "";
    position: absolute;
    top: -50%; right: -20%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(232, 89, 12, 0.12) 0%, transparent 70%);
    pointer-events: none;
}
.donate__inner {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 3rem; align-items: start;
}
.donate h2 { color: var(--bone-100); }
.donate__card {
    position: relative;
    background: var(--glass-white-md);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--glass-border);
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, var(--ember-500), var(--ember-300), transparent) 1;
    box-shadow: var(--glass-shadow), inset 0 1px 0 rgba(255,255,255,0.05);
}
.donate__details { display: grid; grid-template-columns: auto 1fr; gap: 0.5rem 1.25rem; margin: 0; }
.donate__details dt {
    font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
    font-size: 0.72rem; color: var(--bone-300);
}
.donate__details dd { margin: 0; }
.donate__account-no {
    font-family: ui-monospace, "Courier New", monospace;
    font-size: 1.1rem;
    display: flex; align-items: center; flex-wrap: wrap;
    background: var(--glass-white);
    padding: 0.4rem 0.8rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
}
@media (max-width: 780px) {
    .donate__inner { grid-template-columns: 1fr; }
}

/* --- Footer --- */
.site-footer {
    background: var(--asphalt-950);
    color: var(--bone-100);
    padding-block: var(--section-pad) 3rem;
    border-top: 1px solid var(--glass-border);
}
.site-footer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}
.footer-col__heading {
    font-size: 1.15rem;
    background: linear-gradient(135deg, var(--bone-100), var(--bone-300));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer-col a { text-decoration: none; transition: color var(--transition-fast); }
.footer-col a:hover { color: var(--ember-300); }
.footer-map__iframe {
    border: 0; border-radius: var(--radius);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.site-footer__legal {
    text-align: center; margin: 3rem 0 0;
    color: var(--bone-300); font-size: 0.85rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}
@media (max-width: 900px) {
    .site-footer__grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* --- Contact form --- */
.contact-form__row { margin-bottom: 1.1rem; }
.contact-form__row label {
    display: block; font-weight: 700; margin-bottom: 0.4rem; font-size: 0.88rem;
    color: var(--bone-200);
}
.contact-form__row input, .contact-form__row textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
    background: var(--glass-white);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--bone-100);
    font: inherit;
    transition: all var(--transition-fast);
}
.contact-form__row input::placeholder, .contact-form__row textarea::placeholder {
    color: rgba(237, 230, 219, 0.4);
}
.contact-form__row input:focus, .contact-form__row textarea:focus {
    border-color: var(--ember-500);
    background: var(--glass-white-md);
    box-shadow: 0 0 0 3px rgba(232, 89, 12, 0.15);
    outline: none;
}
.contact-form__honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.flash {
    margin: 1rem auto;
    max-width: var(--content-max);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.flash--success {
    background: rgba(228, 244, 225, 0.12);
    color: #8AE484;
    border: 1px solid rgba(138, 228, 132, 0.3);
}
.flash--error {
    background: rgba(251, 228, 223, 0.12);
    color: #F09888;
    border: 1px solid rgba(240, 152, 136, 0.3);
}

/* --- 404 --- */
.not-found { min-height: 60vh; display: flex; align-items: center; }
.not-found__inner { text-align: center; }

/* --- Floating social / WhatsApp --- */
.floating-social {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 140;
    display: flex;
    flex-direction: column-reverse;
    gap: 0.75rem;
    align-items: center;
}
.floating-social__btn {
    display: flex; align-items: center; justify-content: center;
    width: 54px; height: 54px;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
    transition: all var(--transition-smooth);
    color: var(--bone-100);
    position: relative;
}
.floating-social__btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, transparent 50%);
    pointer-events: none;
}
.floating-social__btn:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.4);
}
.floating-social__btn svg { width: 24px; height: 24px; fill: currentColor; position: relative; z-index: 1; }
.floating-social__btn--whatsapp {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--ember-500), var(--ember-400));
    color: var(--bone-50);
    box-shadow: 0 6px 20px rgba(232, 89, 12, 0.4);
}
.floating-social__btn--whatsapp:hover {
    box-shadow: 0 10px 30px rgba(232, 89, 12, 0.5);
}
.floating-social__btn--whatsapp svg { width: 28px; height: 28px; }
.floating-social__btn--facebook {
    background: var(--glass-white-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid var(--ember-500);
}
.floating-social__btn--youtube {
    background: #FF0000;
    color: var(--bone-50);
}
.floating-social__btn--bible {
    background: linear-gradient(135deg, #7A1F2B, #5A1620);
    color: #F0D9A8;
    border: 2px solid #F0D9A8;
}
.floating-social__btn--music {
    background: var(--glass-white-md);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 2px solid var(--ember-500);
    padding: 0;
    cursor: pointer;
}
.floating-social__btn--music:not(.is-playing) { opacity: 0.55; }
.floating-social__btn--music:not(.is-playing)::after {
    content: "";
    position: absolute;
    left: 9px;
    right: 9px;
    top: 50%;
    height: 2px;
    background: currentColor;
    transform: rotate(-45deg);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .floating-social {
        right: 1rem;
        bottom: 1.5rem;
    }
}

/* --- Scroll reveal --- */
[data-reveal-item] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
[data-reveal-item].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Stagger children animation --- */
[data-reveal] > .content-col > *:nth-child(1) { transition-delay: 0ms; }
[data-reveal] > .content-col > *:nth-child(2) { transition-delay: 80ms; }
[data-reveal] > .content-col > *:nth-child(3) { transition-delay: 160ms; }
[data-reveal] > .content-col > *:nth-child(4) { transition-delay: 240ms; }
[data-reveal] > .content-col > *:nth-child(5) { transition-delay: 320ms; }

/* --- Smooth scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--asphalt-950); }
::-webkit-scrollbar-thumb {
    background: var(--asphalt-700);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--asphalt-800); }

/* --- Selection --- */
::selection {
    background: rgba(232, 89, 12, 0.3);
    color: var(--bone-50);
}

/* --- Utility --- */
.text-gradient {
    background: linear-gradient(135deg, var(--ember-500), var(--ember-300));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
