/* ===================================================
   Rapid City Church of Christ — Main Stylesheet
   Aesthetic: Dignified warmth, Black Hills inspired
   Palette: Deep navy, warm gold, stone, cream
   =================================================== */

:root {
    --navy:      #1a2d4a;
    --navy-deep: #0f1e33;
    --gold:      #c8922a;
    --gold-lt:   #e8b84b;
    --stone:     #8c7b6b;
    --stone-lt:  #c4b5a5;
    --cream:     #f7f3ee;
    --cream-dk:  #ede5d8;
    --text:      #2c2218;
    --text-md:   #5a4a38;
    --white:     #ffffff;
    --red-dark:  #7a1a1a;

    --font-display: 'Cinzel', Georgia, serif;
    --font-body:    'Source Serif 4', Georgia, serif;
    --font-ui:      'Source Sans 3', system-ui, sans-serif;

    --radius:   6px;
    --shadow:   0 4px 20px rgba(26,45,74,0.12);
    --shadow-lg:0 8px 40px rgba(26,45,74,0.18);
    --transition: 0.25s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--cream);
    overflow-x: hidden;
    position: relative;
}

/* ── Background Cross ── */
.bg-cross {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(55vw, 500px);
    height: min(80vh, 750px);
    opacity: 0.035;
    pointer-events: none;
    z-index: 0;
}
.bg-cross svg {
    width: 100%;
    height: 100%;
    fill: var(--navy);
}

/* ── Site Header ── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--navy-deep);
    border-bottom: 3px solid var(--gold);
    box-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 76px;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.header-cross svg {
    width: 36px;
    height: 54px;
    fill: var(--gold);
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(200,146,42,0.4));
}

.header-text { display: flex; flex-direction: column; gap: 1px; }

.site-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    line-height: 1.2;
    letter-spacing: 0.02em;
}
.site-title span { color: var(--gold-lt); font-weight: 400; }
.site-title:hover { color: var(--gold-lt); }

.site-tagline {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    color: var(--stone-lt);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 300;
}

/* Nav */
.main-nav { display: flex; align-items: center; }

.nav-links {
    list-style: none;
    display: flex;
    gap: 4px;
    align-items: center;
}

.nav-links a {
    font-family: var(--font-ui);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--stone-lt);
    text-decoration: none;
    padding: 8px 14px;
    border-radius: var(--radius);
    transition: var(--transition);
    white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--gold-lt);
    background: rgba(200,146,42,0.12);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold-lt);
    border-radius: 2px;
    transition: var(--transition);
}

/* ── Main Content ── */
.site-main {
    position: relative;
    z-index: 1;
    min-height: 70vh;
}

/* ── Hero Section ── */
.hero {
    background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, #2a4060 100%);
    color: var(--white);
    padding: 80px 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.015'%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-cross {
    width: 60px;
    height: 90px;
    margin: 0 auto 28px;
    opacity: 0.7;
}
.hero-cross svg { width: 100%; height: 100%; fill: var(--gold); }

.hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 16px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-style: italic;
    font-weight: 300;
    color: var(--stone-lt);
    max-width: 600px;
    margin: 0 auto 32px;
}

.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-times {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.12);
}
.time-block {
    text-align: center;
    min-width: 140px;
}
.time-block .day {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: 4px;
}
.time-block .service {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white);
}
.time-block .time {
    font-size: 0.85rem;
    color: var(--stone-lt);
    font-family: var(--font-ui);
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-family: var(--font-ui);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
}
.btn-primary:hover {
    background: var(--gold-lt);
    border-color: var(--gold-lt);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(200,146,42,0.35);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
    border-color: var(--gold-lt);
    color: var(--gold-lt);
    transform: translateY(-1px);
}
.btn-sm {
    padding: 8px 18px;
    font-size: 0.8rem;
}
.btn-dark {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}
.btn-dark:hover {
    background: var(--navy-deep);
    transform: translateY(-1px);
}

/* ── Section Layout ── */
.section {
    padding: 72px 24px;
}
.section-alt {
    background: var(--cream-dk);
}
.section-dark {
    background: var(--navy);
    color: var(--white);
}

.container {
    max-width: 1160px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 52px;
}
.section-label {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 14px;
}
.section-dark .section-title { color: var(--white); }
.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-md);
    max-width: 560px;
    margin: 0 auto;
    font-style: italic;
}
.section-dark .section-subtitle { color: var(--stone-lt); }

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-lt));
    margin: 16px auto 0;
    border-radius: 2px;
}

/* ── News Cards ── */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.news-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    border-top: 4px solid var(--gold);
}
.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.news-card.featured { border-top-color: var(--red-dark); }

.news-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.news-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}
.news-badge {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    background: var(--cream-dk);
    color: var(--stone);
}
.news-badge.featured { background: var(--red-dark); color: var(--white); }
.news-date {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    color: var(--stone);
}
.news-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
    line-height: 1.35;
}
.news-card p {
    font-size: 0.92rem;
    color: var(--text-md);
    line-height: 1.65;
    flex: 1;
}
.news-card-footer {
    padding: 14px 24px;
    background: var(--cream);
    border-top: 1px solid var(--cream-dk);
}
.read-more {
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: var(--transition);
}
.read-more:hover { color: var(--navy); }

/* ── Calendar ── */
.calendar-wrap {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 28px;
    background: var(--navy);
    color: var(--white);
}

.cal-header h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
}

.cal-nav {
    display: flex;
    gap: 8px;
}
.cal-nav button {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    width: 34px; height: 34px;
    border-radius: var(--radius);
    cursor: pointer;
    font-size: 1rem;
    transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
}
.cal-nav button:hover { background: rgba(200,146,42,0.3); border-color: var(--gold); }

.cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}
.cal-day-name {
    text-align: center;
    padding: 10px 4px;
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--stone);
    background: var(--cream-dk);
    border-bottom: 1px solid var(--cream-dk);
}
.cal-day {
    min-height: 90px;
    padding: 8px;
    border: 1px solid #e8e0d4;
    vertical-align: top;
    position: relative;
    transition: background var(--transition);
}
.cal-day:hover { background: #fdf9f4; }
.cal-day.other-month { background: #f5f1ec; }
.cal-day.today { background: #fffbf0; }
.cal-day.today .day-num {
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    width: 26px; height: 26px;
    display: flex; align-items: center; justify-content: center;
}
.day-num {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-md);
    margin-bottom: 4px;
    width: 26px; height: 26px;
    display: flex; align-items: center; justify-content: center;
}
.cal-day.other-month .day-num { color: var(--stone-lt); }

.cal-event {
    font-family: var(--font-ui);
    font-size: 0.68rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 3px;
    margin-bottom: 3px;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
    display: block;
    text-decoration: none;
    transition: opacity var(--transition);
}
.cal-event:hover { opacity: 0.85; }

.events-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}
.event-item {
    display: flex;
    gap: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}
.event-item:hover { transform: translateX(4px); box-shadow: var(--shadow-lg); }
.event-date-block {
    min-width: 70px;
    text-align: center;
    padding: 20px 10px;
    background: var(--navy);
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.event-date-block .month {
    font-family: var(--font-ui);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-lt);
}
.event-date-block .day {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--white);
}
.event-body { padding: 18px 20px; flex: 1; }
.event-body h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 6px;
}
.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--stone);
    margin-bottom: 8px;
}
.event-meta span::before { margin-right: 4px; }
.event-desc { font-size: 0.88rem; color: var(--text-md); }

/* ── Welcome Banner ── */
.welcome-band {
    background: linear-gradient(135deg, var(--cream-dk) 0%, #e8dece 100%);
    padding: 56px 24px;
    text-align: center;
    position: relative;
}
.welcome-band::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
}
.welcome-band blockquote {
    font-family: var(--font-body);
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    font-style: italic;
    font-weight: 300;
    color: var(--navy);
    max-width: 700px;
    margin: 0 auto 12px;
    line-height: 1.6;
}
.welcome-band cite {
    font-family: var(--font-ui);
    font-size: 0.85rem;
    color: var(--gold);
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ── About / Info Boxes ── */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 24px;
}
.info-box {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
}
.info-box:hover { background: rgba(255,255,255,0.13); transform: translateY(-2px); }
.info-icon {
    width: 52px; height: 52px;
    margin: 0 auto 16px;
    background: rgba(200,146,42,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.info-icon svg { width: 26px; height: 26px; fill: var(--gold-lt); }
.info-box h3 {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 8px;
}
.info-box p {
    font-size: 0.88rem;
    color: var(--stone-lt);
    line-height: 1.6;
}

/* ── Page Headers ── */
.page-header {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
    padding: 52px 24px 48px;
    text-align: center;
    border-bottom: 3px solid var(--gold);
}
.page-header h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
}
.page-header p {
    color: var(--stone-lt);
    font-size: 1rem;
    font-style: italic;
    margin-top: 10px;
}

/* ── Contact Form ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }

.form-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 36px;
}
.form-card h2 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 24px;
}

.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-md);
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--cream-dk);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(200,146,42,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ── Facebook Link ── */
.fb-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: 12px;
    font-family: var(--font-ui);
    font-size: 0.82rem;
    font-weight: 600;
    color: #8ab4e8;
    text-decoration: none;
    transition: var(--transition);
}
.fb-link svg {
    width: 16px; height: 16px;
    fill: #8ab4e8;
    flex-shrink: 0;
}
.fb-link:hover { color: #b8d0f0; }

/* ── Hero with background image ── */
.hero {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(15,30,51,var(--overlay)) 0%, rgba(26,45,74,var(--overlay)) 55%, rgba(42,64,96,var(--overlay)) 100%);
    z-index: 0;
}
.hero > *:not(.hero-overlay) { position: relative; z-index: 1; }

/* ── Footer ── */
.site-footer {
    background: var(--navy-deep);
    color: var(--white);
    padding: 60px 24px 0;
    position: relative;
    z-index: 1;
}
.footer-inner { max-width: 1160px; margin: 0 auto; }

.footer-brand {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-cross svg { width: 30px; height: 45px; fill: var(--gold); }
.footer-brand strong {
    font-family: var(--font-display);
    font-size: 1.1rem;
    display: block;
    margin-bottom: 4px;
}
.footer-brand p { font-size: 0.82rem; color: var(--stone-lt); font-family: var(--font-ui); }

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 36px;
    margin-bottom: 48px;
}
.footer-col h4 {
    font-family: var(--font-ui);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-lt);
    margin-bottom: 14px;
}
.footer-col ul { list-style: none; }
.footer-col ul li {
    font-size: 0.88rem;
    color: var(--stone-lt);
    margin-bottom: 7px;
    font-family: var(--font-ui);
}
.footer-col ul li strong { color: var(--white); }
.footer-col a {
    color: var(--stone-lt);
    text-decoration: none;
    transition: var(--transition);
    font-family: var(--font-ui);
}
.footer-col a:hover { color: var(--gold-lt); }
.footer-col address { font-style: normal; }

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-bottom p {
    font-family: var(--font-ui);
    font-size: 0.78rem;
    color: var(--stone);
}
.footer-verse { font-style: italic; color: var(--stone-lt) !important; }

/* ── Alerts / Messages ── */
.alert {
    padding: 14px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-family: var(--font-ui);
    font-size: 0.9rem;
    border-left: 4px solid transparent;
}
.alert-success { background: #eaf7ef; color: #1a5c36; border-color: #2d9954; }
.alert-error   { background: #fdeaea; color: #7a1a1a; border-color: #c0392b; }
.alert-info    { background: #eaf0fb; color: #1a2d4a; border-color: var(--navy); }

/* ── Breadcrumb ── */
.breadcrumb {
    padding: 12px 24px;
    background: var(--cream-dk);
    border-bottom: 1px solid #ddd5c8;
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--stone);
}
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 6px; }

/* ── Pagination ── */
.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}
.pagination a, .pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    border-radius: var(--radius);
    font-family: var(--font-ui);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid var(--cream-dk);
    color: var(--text-md);
    transition: var(--transition);
}
.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.pagination .current { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* ── Responsive ── */
@media (max-width: 900px) {
    .cal-day { min-height: 64px; }
    .cal-event { display: none; }
    .cal-day.has-event::after {
        content: '';
        display: block;
        width: 6px; height: 6px;
        background: var(--gold);
        border-radius: 50%;
        margin: 4px auto 0;
    }
}
@media (max-width: 720px) {
    .nav-toggle { display: flex; }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: var(--navy-deep);
        padding: 12px;
        border-top: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    }
    .nav-links.open { display: flex; }
    .nav-links a { padding: 12px 16px; width: 100%; }
    .header-inner { position: relative; }
    .main-nav { position: static; }

    .hero-times { gap: 16px; }
    .event-item { flex-direction: column; }
    .event-date-block { flex-direction: row; gap: 8px; padding: 14px 20px; min-width: unset; }
    .cal-grid { font-size: 0.7rem; }
    .cal-day { min-height: 44px; padding: 4px; }
    .day-num { font-size: 0.7rem; width: 22px; height: 22px; }
}
@media (max-width: 480px) {
    .news-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cal-day-name { font-size: 0.6rem; padding: 6px 2px; }
}
