/*
Theme Name: Kershaw County School Ministries
Theme URI: https://lavenderblush-llama-687095.hostingersite.com/
Author: KCSM
Description: Official theme for Kershaw County School Ministries
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: kcsm
*/

/* ===========================
   CSS VARIABLES / COLORS
=========================== */
:root {
    --blue: #84cc16;
    --blue-dark: #6aa30d;
    --gold: #1a3a6b;
    --gold-light: #24509a;
    --white: #ffffff;
    --offwhite: #f8f7f4;
    --gray: #555555;
    --light-gray: #e8e8e8;
    --dark: #111111;
    --font-main: 'Segoe UI', Arial, sans-serif;
}

/* ===========================
   RESET & BASE
=========================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
    font-size: 17px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--blue);
    text-decoration: none;
}

a:hover {
    color: var(--gold);
}

h1,
h2,
h3,
h4,
h5 {
    line-height: 1.25;
    font-weight: 700;
    color: var(--blue);
}

p {
    margin-bottom: 1rem;
    color: var(--gray);
}

ul {
    list-style: none;
}

/* ===========================
   LAYOUT
=========================== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.section--gray {
    background: var(--offwhite);
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 12px;
    color: var(--blue);
}

.section-subtitle {
    text-align: center;
    color: var(--gray);
    margin-bottom: 48px;
    font-size: 1.05rem;
}

.section-title span {
    color: var(--gold);
}

/* ===========================
   BUTTONS
=========================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.1s;
    border: none;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--gold);
    color: var(--blue);
}

.btn-primary:hover {
    background: var(--gold-light);
    color: var(--blue);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--blue);
}

.btn-blue {
    background: var(--blue);
    color: var(--white);
}

.btn-blue:hover {
    background: var(--blue-dark);
    color: var(--white);
}

/* ===========================
   HEADER / NAV
=========================== */
.site-header {
    background: var(--blue);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px 0 8px;
    max-width: 1100px;
    margin: 0 auto;
    height: 70px;
}

.site-logo {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.site-logo .custom-logo-link {
    display: flex;
    align-items: center;
}

.site-logo .custom-logo,
.site-logo .custom-logo-link img {
    max-height: 44px !important;
    width: auto !important;
    height: 44px !important;
    display: block;
    object-fit: contain;
}

.site-logo span {
    color: var(--gold);
}

.site-logo:hover {
    color: var(--white);
}

.nav-menu {
    display: flex;
    gap: 8px;
    align-items: center;
}

.nav-menu a {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 4px;
    transition: background 0.2s, color 0.2s;
    font-size: 0.97rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(255, 255, 255, 0.12);
    color: var(--gold);
}

/* ── Dropdown ── */
.has-dropdown {
    position: relative;
}

.has-dropdown > a::after {
    content: ' ▾';
    font-size: 0.7em;
    opacity: 0.7;
}

.nav-dropdown {
    /* visibility+opacity lets us add a CSS hide-delay so the menu
       doesn't vanish the instant the mouse moves even 1px off */
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 100%;
    /* extra padding-top fills the gap between navbar and dropdown
       so the mouse doesn't "fall through" and trigger a close */
    padding-top: 10px;
    left: 0;
    background: var(--blue);
    border-radius: 0 0 8px 8px;
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    margin: 0;
    z-index: 9999;
    list-style: none;
    border-top: 3px solid var(--gold);
    /* Open instantly; wait 240ms before hiding */
    transition: opacity 0.15s ease, visibility 0.15s ease;
    transition-delay: 0.24s;
}

.nav-dropdown li a {
    display: block;
    padding: 11px 20px;
    white-space: nowrap;
    font-size: 0.93rem;
    color: rgba(255, 255, 255, 0.9);
    border-radius: 0;
}

.nav-dropdown li a:hover {
    background: rgba(255, 255, 255, 0.13);
    color: var(--gold);
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition-delay: 0s; /* appear with no delay, only hide has delay */
}

.nav-give a {
    background: var(--gold);
    color: var(--blue) !important;
    border-radius: 4px;
}

.nav-give a:hover {
    background: var(--gold-light);
    color: var(--blue) !important;
}

.nav-enroll a {
    border: 2px solid var(--gold);
    color: var(--gold) !important;
    border-radius: 4px;
    padding: 4px 12px;
}

.nav-enroll a:hover {
    background: var(--gold);
    color: var(--blue) !important;
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: 0.3s;
}

/* ===========================
   HERO
=========================== */
.hero {
    background: linear-gradient(135deg, #84cc16 60%, #5a9e08 100%);
    color: var(--white);
    padding: 110px 24px 90px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.hero-eyebrow {
    display: inline-block;
    background: var(--gold);
    color: var(--blue);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 22px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===========================
   STATS BAR
=========================== */
.stats-bar {
    background: var(--gold);
    padding: 28px 24px;
}

.stats-inner {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    color: var(--blue);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

/* ===========================
   MISSION / ABOUT STRIP
=========================== */
.mission-strip {
    background: var(--blue);
    color: var(--white);
    padding: 60px 24px;
    text-align: center;
}

.mission-strip h2 {
    color: var(--white);
    font-size: 1.6rem;
    margin-bottom: 14px;
}

.mission-strip p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 680px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* ===========================
   CARDS (Events, Team, etc.)
=========================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    margin-top: 16px;
}

.card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.13);
}

.card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.card-body {
    padding: 24px;
}

.card-body h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--blue);
}

.card-body p {
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.card-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 10px;
}

/* ===========================
   EVENT LIST
=========================== */
.event-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-item {
    display: flex;
    gap: 24px;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    padding: 24px;
    align-items: flex-start;
    transition: transform 0.2s;
}

.event-item:hover {
    transform: translateX(4px);
}

.event-date {
    background: var(--blue);
    color: var(--white);
    border-radius: 6px;
    min-width: 64px;
    text-align: center;
    padding: 10px 8px;
    flex-shrink: 0;
}

.event-month {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    font-weight: 700;
}

.event-day {
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1;
}

.event-info h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: var(--blue);
}

.event-info p {
    font-size: 0.93rem;
    margin: 0;
}

.event-time {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 700;
    margin-top: 6px;
}

/* ===========================
   CONTACT SECTION
=========================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.contact-detail {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.contact-icon {
    width: 42px;
    height: 42px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: var(--blue);
    font-weight: 700;
}

.contact-detail p {
    margin: 0;
    font-size: 0.97rem;
}

.contact-detail strong {
    color: var(--blue);
    display: block;
}

/* ===========================
   FORM
=========================== */
.contact-form {
    background: var(--white);
    border-radius: 8px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.92rem;
    color: var(--blue);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--light-gray);
    border-radius: 5px;
    font-size: 0.97rem;
    font-family: inherit;
    transition: border-color 0.2s;
    background: #fafafa;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--blue);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

/* ===========================
   GIVE / DONATE PAGE
=========================== */
.give-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.give-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
    margin-bottom: 60px;
}

.give-card {
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 36px 28px;
    text-align: center;
    border-top: 4px solid var(--gold);
    transition: transform 0.2s;
}

.give-card:hover {
    transform: translateY(-4px);
}

.give-card .icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.give-card h3 {
    margin-bottom: 10px;
}

.give-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* ===========================
   PAGE HERO (inner pages)
=========================== */
.page-hero {
    background: linear-gradient(135deg, var(--blue) 0%, #0d2447 100%);
    padding: 60px 24px;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.page-hero p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    margin: 12px auto 0;
}

.page-hero .breadcrumb {
    font-size: 0.82rem;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===========================
   ABOUT PAGE
=========================== */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-placeholder {
    background: linear-gradient(135deg, var(--blue), #24509a);
    border-radius: 12px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.3);
}

.about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.about-text p {
    margin-bottom: 16px;
}

.values-list {
    margin-top: 28px;
}

.values-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
    font-size: 0.97rem;
    color: var(--gray);
}

.values-list li::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.7rem;
    margin-top: 5px;
    flex-shrink: 0;
}

/* ===========================
   HERO — PHOTO VARIANT
=========================== */
.hero--photo {
    background-size: cover;
    background-position: center 20%;
    background-repeat: no-repeat;
    padding: 140px 24px 110px;
}

/* Remove the SVG pattern overlay on photo hero */
.hero--photo::before {
    background: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(10, 30, 60, 0.72) 0%,
            rgba(10, 30, 60, 0.55) 60%,
            rgba(10, 30, 60, 0.75) 100%);
    z-index: 0;
}

.hero--photo .hero-content {
    position: relative;
    z-index: 1;
}

/* ===========================
   PHOTO STRIP (home page)
=========================== */
.photo-strip {
    display: flex;
    gap: 0;
    overflow: hidden;
    height: 260px;
}

.photo-strip img {
    flex: 1 1 0;
    width: 0;
    height: 260px;
    object-fit: cover;
    transition: flex 0.4s ease;
    display: block;
}

.photo-strip img:hover {
    flex: 2.5 1 0;
}

@media (max-width: 600px) {
    .photo-strip {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        height: 160px;
    }

    .photo-strip img {
        width: 100%;
        height: 160px;
        flex: none;
    }
}

/* ===========================
   GALLERY GRID
=========================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 40px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4 / 3;
    background: #e8edf3;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.16);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.04);
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
    background: #0d1f3c;
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 24px 28px;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.footer-brand h3 span {
    color: var(--gold);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--gold);
}

/* ===========================
   ENTRY CONTENT (Gutenberg)
=========================== */
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4 {
    color: var(--dark);
    font-weight: 700;
    line-height: 1.3;
    margin: 1.6em 0 0.5em;
}

.entry-content h2 {
    font-size: 1.55rem;
    border-bottom: 2px solid var(--blue);
    padding-bottom: 6px;
    display: inline-block;
}

.entry-content h3 {
    font-size: 1.15rem;
    color: var(--dark);
}

.entry-content p {
    line-height: 1.85;
    color: var(--dark);
    margin-bottom: 1em;
}

.entry-content ul,
.entry-content ol {
    padding-left: 1.5em;
    margin-bottom: 1em;
    line-height: 1.8;
    color: var(--dark);
}

.entry-content li {
    margin-bottom: 0.4em;
}

.entry-content strong {
    font-weight: 700;
}

.entry-content em {
    font-style: italic;
    color: var(--gray);
}

.entry-content a {
    color: var(--blue);
    text-decoration: underline;
}

.entry-content hr,
.entry-content .wp-block-separator {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 2em 0;
}

.entry-content blockquote,
.entry-content .wp-block-quote {
    border-left: 4px solid var(--blue);
    margin: 1.5em 0;
    padding: 14px 20px;
    background: #f8fdf2;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #374151;
}

.entry-content figure img {
    max-width: 100%;
    border-radius: 10px;
}

.entry-content .wp-block-image {
    margin: 1.5em 0;
}

.entry-content .wp-block-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
}

.entry-content .wp-block-table td,
.entry-content .wp-block-table th {
    border: 1px solid #e5e7eb;
    padding: 10px 14px;
    text-align: left;
}

.entry-content .wp-block-table thead {
    background: var(--blue);
    color: #fff;
}

.entry-content .wp-block-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin: 1.5em 0;
}

.entry-content .wp-block-button__link {
    background: var(--blue);
    color: #fff;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
}

/* ===========================
   RESPONSIVE — TABLET (≤1024px)
=========================== */
@media (max-width: 1024px) {

    .about-split,
    .contact-grid {
        gap: 36px;
    }

    .hero--photo {
        padding: 100px 24px 80px;
    }

    .cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

/* ===========================
   RESPONSIVE — MOBILE (≤768px)
=========================== */
@media (max-width: 768px) {

    /* ── NAV ── */
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--blue);
        padding: 16px 24px 20px;
        gap: 4px;
        border-top: 2px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu a {
        padding: 12px 16px;
    }

    .has-dropdown>a::after {
        float: right;
    }

    /* Disable hover dropdowns on touch; use JS .open class instead */
    .has-dropdown:hover .nav-dropdown,
    .has-dropdown:focus-within .nav-dropdown {
        display: none;
    }

    .has-dropdown.open .nav-dropdown {
        display: block;
    }

    .nav-dropdown {
        display: none;
        position: static;
        box-shadow: none;
        border-radius: 0;
        border-top: none;
        border-left: 3px solid var(--gold);
        margin: 4px 0 4px 16px;
        padding: 4px 0;
        min-width: unset;
        width: 100%;
        background: rgba(255, 255, 255, 0.05);
    }

    .nav-toggle {
        display: flex;
    }

    /* ── SECTIONS ── */
    .section {
        padding: 52px 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.97rem;
        margin-bottom: 32px;
    }

    /* ── HERO ── */
    .hero {
        padding: 70px 24px 60px;
    }

    .hero--photo {
        padding: 80px 24px 70px;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

    /* ── GRIDS → single column ── */
    .contact-grid,
    .about-split,
    .footer-top {
        grid-template-columns: 1fr;
    }

    .about-split {
        gap: 28px;
    }

    .about-img-placeholder {
        height: 220px;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* ── STATS ── */
    .stats-inner {
        gap: 28px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    /* ── EVENTS ── */
    .event-item {
        flex-direction: column;
        gap: 14px;
    }

    /* ── CONTACT FORM ── */
    .contact-form {
        padding: 24px 18px;
    }

    /* ── MISSION STRIP ── */
    .mission-strip {
        padding: 48px 20px;
    }

    .mission-strip h2 {
        font-size: 1.3rem;
    }

    .mission-strip p {
        font-size: 1rem;
    }

    /* ── PAGE HERO ── */
    .page-hero {
        padding: 44px 20px;
    }

    /* ── GIVE PAGE TIERS ── */
    .give-options {
        grid-template-columns: 1fr;
    }

    /* ── FOOTER ── */
    .footer-brand p {
        font-size: 0.9rem;
    }
}

/* ===========================
   RESPONSIVE — SMALL PHONE (≤480px)
=========================== */
@media (max-width: 480px) {
    .nav-inner {
        padding: 0 16px;
    }

    .container {
        padding: 0 16px;
    }

    .section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .hero h1 {
        font-size: 1.85rem;
    }

    .hero-eyebrow {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .stats-inner {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .btn {
        padding: 12px 22px;
        font-size: 0.95rem;
    }

    .page-hero {
        padding: 36px 16px;
    }

    .contact-form {
        padding: 20px 14px;
    }

    .mission-strip {
        padding: 40px 16px;
    }

    .mission-strip h2 {
        font-size: 1.15rem;
    }

    .event-date {
        min-width: 52px;
    }

    .site-logo .custom-logo,
    .site-logo .custom-logo-link img {
        height: 36px !important;
        max-height: 36px !important;
    }
}