:root {
    --bethany-burgundy: #8b1e29;
    --bethany-burgundy-dark: #64141d;
    --bethany-charcoal: #1e1e1f;
    --bethany-rose: #f4e8ea;
    --bethany-bg: #faf7f7;
    --bethany-white: #ffffff;
    --bethany-border: #e7d7da;
    --bethany-text: #27272a;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--bethany-text);
    background: var(--bethany-white);
    line-height: 1.6;
}

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

a { color: var(--bethany-burgundy); text-decoration: none; }
a:hover { text-decoration: underline; }

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

.announcement-bar {
    background: var(--bethany-charcoal);
    color: #fff;
    padding: 10px 0;
    font-size: 0.95rem;
}
.announcement-inner {
    display: flex;
    gap: 18px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.site-header {
    background: var(--bethany-white);
    border-bottom: 1px solid var(--bethany-border);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.header-inner {
    display: grid;
    grid-template-columns: 1.5fr auto 1fr;
    gap: 20px;
    align-items: center;
    padding: 18px 0;
}
.branding {
    display: flex;
    align-items: center;
    gap: 16px;
}
.branding .custom-logo,
.branding .fallback-logo img {
    max-height: 74px;
    width: auto;
}
.branding-copy h1 {
    margin: 0;
    font-size: 1.25rem;
}
.branding-copy h1 a { color: var(--bethany-charcoal); }
.tagline {
    margin: 4px 0 0;
    color: #5b5b60;
    font-size: 0.95rem;
}
.header-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 18px;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    flex-wrap: wrap;
}
.main-nav a {
    color: var(--bethany-charcoal);
    font-weight: 700;
}

.hero {
    background: linear-gradient(135deg, #f8eff0 0%, #fff 100%);
    padding: 92px 0;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
}
.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--bethany-burgundy);
    font-weight: 700;
    margin-bottom: 10px;
}
.hero h2 {
    font-size: clamp(2.4rem, 5vw, 4.2rem);
    line-height: 1.05;
    margin: 0 0 14px;
    color: var(--bethany-charcoal);
}
.hero p {
    max-width: 760px;
    font-size: 1.1rem;
}

.section { padding: 68px 0; }
.section-heading { margin-bottom: 22px; }
.section-heading h2 { margin: 0 0 8px; color: var(--bethany-charcoal); }
.alt { background: var(--bethany-bg); }

.two-column,
.three-column,
.footer-grid {
    display: grid;
    gap: 24px;
}
.two-column { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.three-column { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.card {
    background: var(--bethany-white);
    border: 1px solid var(--bethany-border);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(32, 16, 19, 0.05);
}
.compact-top { padding-top: 24px; }
.top-gap { margin-top: 24px; }
.center { text-align: center; }

.button {
    display: inline-block;
    background: var(--bethany-burgundy);
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 700;
}
.button:hover { text-decoration: none; }
.button-secondary {
    background: var(--bethany-charcoal);
    color: #fff;
}
.button-outline {
    background: transparent;
    border: 2px solid var(--bethany-burgundy);
    color: var(--bethany-burgundy);
}

.service-card {
    text-align: center;
}
.service-time,
.event-date {
    color: var(--bethany-burgundy);
    font-weight: 700;
}

.page-content { padding: 56px 0; }
.narrow { max-width: 760px; }

.responsive-video,
.responsive-map {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 12px;
}
.responsive-video iframe,
.responsive-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.responsive-giving-frame {
    width: 100%;
    min-height: 820px;
    border: 1px solid var(--bethany-border);
    border-radius: 12px;
    overflow: hidden;
}
.responsive-giving-frame iframe {
    width: 100%;
    min-height: 820px;
    border: 0;
}

.leadership-grid { margin-top: 24px; }
.leadership-card { text-align: center; }
.leader-photo-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    border: 2px dashed var(--bethany-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: #666;
    background: #fcfbfb;
}
.leader-role {
    color: var(--bethany-burgundy);
    font-weight: 700;
    margin: 0 0 8px;
}

.service-list,
.footer-services {
    margin: 0;
    padding-left: 18px;
}
.small-note { font-size: 0.92rem; color: #666; }

.site-footer {
    background: var(--bethany-charcoal);
    color: #fff;
    padding: 56px 0 24px;
}
.site-footer a { color: #fff; }
.footer-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.footer-bottom {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(255,255,255,0.16);
}

.facebook-feed { overflow: hidden; }

.sticky-give-mobile { display: none; }

@media (max-width: 980px) {
    .header-inner {
        grid-template-columns: 1fr;
    }
    .main-nav ul { justify-content: flex-start; }
}

@media (max-width: 900px) {
    .two-column,
    .three-column,
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .sticky-give-mobile {
        display: block;
        position: fixed;
        left: 16px;
        right: 16px;
        bottom: 16px;
        z-index: 9999;
    }
    .sticky-give-mobile .button {
        display: block;
        text-align: center;
        box-shadow: 0 12px 24px rgba(0,0,0,0.2);
    }
    body { padding-bottom: 84px; }
}
