*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --gold: #A67C52;
    --gold-light: #C09060;
    --gold-dim: #6B4F2E;
    --dark:  #0D0D0D;
    --dark2: #111111;
    --dark3: #181818;
    --dark4: #202020;
    --dark5: #282828;
    --text:  #F0EDE8;
    --text2: #B8B4AE;
    --muted: #7A7672;
    --border: #2C2C2C;
    --border2: #383838;

    /* ── FIX #4: Single source of truth for the announcement bar height.
       JS reads the bar's actual rendered height and writes it here.
       Both nav and .mobile-menu consume this variable so they always
       stay in sync — including when the bar is closed (set to 0px). ── */
    --bar-h: 36px;
    --nav-h: 70px;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--dark);
    color: var(--text);
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ── FIX #12: Skip navigation link for keyboard / screen reader users ── */
  .skip-nav {
    position: absolute;
    top: -100%;
    left: 0;
    background: var(--gold);
    color: var(--dark);
    padding: 0.75rem 1.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    z-index: 9999;
    border-radius: 0 0 4px 0;
    transition: top 0.1s;
  }
  .skip-nav:focus {
    top: 0;
  }

  /* ── MAX WIDTH & LARGE SCREEN CONSTRAINTS ── */
  body { max-width: 100%; margin: 0; }

  nav { max-width: 1920px; left: 0; right: 0; transform: none; }

  .hero, .page-hero,
  section, footer,
  .announcement-bar,
  .show-tabs,
  .show-hero,
  .episode-archive,
  .subscribe-cta { max-width: 1920px; }

  .hero-content { max-width: 52%; }

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

  .page-hero-img img { object-position: center center; }

  .mission-inner, .about-inner, .show-hero-inner,
  .origin-inner, .journey-inner, .influences-inner,
  .artist-bio-inner, .booking-inner, .new-music-inner,
  .store-mission-inner, .why-store-inner, .giving-statement-inner,
  .contact-main-inner, .inquiry-types-inner, .prayer-inner,
  .notify-cta-inner, .bottom-signup-inner, .connect-inner,
  .events-inner, .merch-inner, .shows-inner, .podcasts-inner,
  .featured-inner, .showcase-inner, .giving-options-inner,
  .gift-impact-inner, .promise-inner, .from-keith-inner,
  .sample-inner, .inside-inner, .subscribe-cta-inner,
  .about-cta-inner { max-width: 1200px; margin-left: auto; margin-right: auto; }

  @media (min-width: 1400px) {
    .hero-content, .page-hero-content { max-width: 50%; }
  }

  ::-webkit-scrollbar { width: 6px; }
  ::-webkit-scrollbar-track { background: var(--dark2); }
  ::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }

  /* ── ANNOUNCEMENT BAR ── */
  .announcement-bar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 300;
    background: var(--gold);
    padding: 0.6rem 3rem;
    display: flex; align-items: center; justify-content: center;
    gap: 1.5rem; flex-wrap: wrap;
  }
  .announcement-text {
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--dark); text-align: center;
    display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap; justify-content: center;
  }
  .announcement-text .ann-new {
    background: var(--dark); color: var(--gold);
    padding: 0.2rem 0.6rem; border-radius: 2px;
    font-size: 0.6rem; letter-spacing: 0.18em; font-weight: 700;
  }
  .announcement-link {
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--dark); text-decoration: none;
    border-bottom: 1px solid rgba(13,13,13,0.4);
    white-space: nowrap; transition: opacity 0.2s;
  }
  .announcement-link:hover { opacity: 0.7; }
  .announcement-close {
    position: absolute; right: 1.5rem; top: 50%; transform: translateY(-50%);
    background: none; border: none; cursor: pointer;
    color: var(--dark); font-size: 1rem; line-height: 1;
    opacity: 0.6; transition: opacity 0.2s; padding: 0.25rem;
  }
  .announcement-close:hover { opacity: 1; }

  /* ── NAV ── */
  /* FIX #4: top is driven by --bar-h so it automatically tracks the bar */
  nav {
    position: fixed;
    top: var(--bar-h); left: 0; right: 0;
    z-index: 200;
    background: rgba(11,11,11,0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    transition: background 0.3s, top 0.25s ease;
  }

  .nav-logo { display: flex; flex-direction: column; gap: 2px; text-decoration: none; }
  .nav-logo-main {
    font-family: 'Barlow', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
    color: inherit;
  }
  .nav-logo-name {
    color: var(--text);
    font-weight: 800;
    letter-spacing: 0.12em;
    font-family: 'Barlow', sans-serif;
  }
  .nav-logo-ministry {
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 0.12em;
    font-family: 'Barlow', sans-serif;
  }
  .nav-logo-sub {
    font-size: 0.6rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
    font-family: 'Barlow', sans-serif;
  }

  .nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
  }
  /* Issue #13 fix: changed from var(--muted) to var(--text2) for WCAG AA contrast */
  .nav-links a {
    color: var(--text2);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--gold); }

  .nav-give {
    background: var(--gold);
    color: var(--dark) !important;
    padding: 0.55rem 1.4rem;
    border-radius: 2px;
    font-weight: 600 !important;
    letter-spacing: 0.12em !important;
    transition: background 0.2s !important;
  }
  .nav-give:hover { background: var(--gold-light) !important; color: var(--dark) !important; }

  /* ── MOBILE NAV HAMBURGER ── */
  .nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
  }
  .nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text2);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }
  .nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-hamburger.open span:nth-child(2) { opacity: 0; }
  .nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* FIX #4: mobile-menu top = bar height + nav height, driven by CSS variables */
  .mobile-menu {
    display: none;
    position: fixed;
    top: calc(var(--bar-h) + var(--nav-h));
    left: 0; right: 0;
    z-index: 199;
    background: rgba(11,11,11,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
    flex-direction: column;
    gap: 0;
    transition: top 0.25s ease;
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
  }
  .mobile-menu a:last-child { border-bottom: none; }
  .mobile-menu a:hover { color: var(--gold); }
  .mobile-menu .mobile-give {
    margin-top: 1rem;
    background: var(--gold);
    color: var(--dark) !important;
    padding: 0.8rem 1.4rem;
    border-radius: 2px;
    text-align: center;
    font-weight: 600 !important;
    border-bottom: none !important;
  }
  .mobile-menu .mobile-give:hover { background: var(--gold-light); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: calc(var(--bar-h) + var(--nav-h) + 4rem) 3rem 5rem;
    position: relative;
    background: var(--dark2);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
  }
  .hero-bg-cross {
    position: absolute; right: -2%; top: 50%; transform: translateY(-52%);
    font-size: min(55vw, 700px); line-height: 1;
    color: #fff; opacity: 0.025; user-select: none; pointer-events: none;
    font-family: 'Playfair Display', serif; font-weight: 900;
  }
  .hero-line {
    position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    opacity: 0.6; z-index: 2;
  }
  .hero-episode-panel {
    position: absolute; right: 0; top: 0; bottom: 0; width: 45%;
    clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
    background: var(--dark3);
    border-left: 1px solid var(--border);
    display: flex; flex-direction: column; justify-content: center;
    padding: 4rem 3rem 4rem 5rem;
  }
  .ep-panel-eyebrow {
    font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase;
    color: var(--gold); font-weight: 600; margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.5rem;
  }
  .ep-panel-eyebrow::before { content: ''; display: block; width: 16px; height: 1px; background: var(--gold); }
  .ep-panel-date {
    font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--muted); font-weight: 500; margin-bottom: 1.25rem;
  }
  .ep-panel-divider {
    width: 44px; height: 2px; background: var(--gold); margin-bottom: 1.5rem;
  }
  .ep-panel-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1rem, 1.8vw, 1.4rem);
    font-weight: 700; color: var(--text);
    line-height: 1.3; margin-bottom: 1rem;
  }
  .ep-panel-desc {
    font-size: 0.85rem; color: var(--text2);
    line-height: 1.75; font-weight: 300;
    margin-bottom: 1.5rem;
  }
  .ep-panel-loading {
    font-size: 0.82rem; color: var(--muted); font-style: italic;
    animation: blink 1.4s infinite;
  }
  @keyframes blink { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
  .ep-panel-link {
    font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--gold); font-weight: 600; text-decoration: none;
    display: inline-flex; align-items: center; gap: 0.5rem;
    transition: gap 0.2s;
  }
  .ep-panel-link:hover { gap: 0.85rem; }
  .ep-panel-weekend {
    font-size: 0.92rem; color: var(--text2); line-height: 1.75;
    font-weight: 300; font-style: italic;
  }
  .hero-content { position: relative; z-index: 2; max-width: 52%; }

  .eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: var(--gold);
  }

  .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3.2rem, 8vw, 7rem);
    font-weight: 900;
    line-height: 1.0;
    color: var(--text);
    margin-bottom: 1.75rem;
    letter-spacing: -0.01em;
  }
  .hero-title em {
    color: var(--gold);
    font-style: italic;
  }

  .hero-sub {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--text2);
    max-width: 48ch;
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 3rem;
  }

  .hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--dark);
    padding: 0.9rem 2.2rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s;
    display: inline-block;
  }
  .btn-primary:hover { background: var(--gold-light); }

  .btn-outline {
    border: 1px solid var(--border2);
    color: var(--text2);
    padding: 0.9rem 2.2rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: border-color 0.2s, color 0.2s;
    display: inline-block;
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); }

  .hero-stats {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
  }
  .hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.25rem;
  }
  .hero-stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
  }

  .hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    right: 3rem;
    writing-mode: vertical-rl;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .hero-scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 40px;
    background: var(--gold);
    opacity: 0.5;
  }

  /* ── SECTION COMMON ── */
  section { padding: 6rem 3rem; }

  .section-label {
    font-size: 0.65rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  .section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold);
  }

  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 1.25rem;
  }

  .gold-bar {
    width: 44px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 2rem;
  }

  /* ── MISSION ── */
  .mission {
    background: var(--dark3);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 5rem 3rem;
  }
  .mission-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 5rem;
    align-items: center;
  }
  .mission-quote {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: 700;
    line-height: 1.45;
    color: var(--text);
  }
  .mission-quote em { color: var(--gold); font-style: italic; }
  .mission-ref {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 1rem;
    font-weight: 500;
  }
  .mission-body {
    font-size: 1.05rem;
    color: var(--text2);
    line-height: 1.85;
    font-weight: 300;
  }

  /* ── ABOUT ── */
  .about { background: var(--dark2); }
  .about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
  }
  .about-img-wrap { position: relative; }
  .about-img {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--dark4);
    border: 1px solid var(--border);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.5rem;
    overflow: hidden;
    position: relative;
  }
  .about-img-initials {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.12;
    line-height: 1;
  }
  .about-img-caption {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    background: rgba(13,13,13,0.8);
    padding: 0.4rem 0.75rem;
    border-radius: 1px;
  }
  .about-accent {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 120px;
    height: 120px;
    border: 2px solid var(--gold);
    opacity: 0.2;
    border-radius: 2px;
    z-index: -1;
  }
  .about-text .section-title { margin-bottom: 0.5rem; }
  .about-body {
    font-size: 1rem;
    color: var(--text2);
    line-height: 1.85;
    font-weight: 300;
    margin-bottom: 1.5rem;
  }

  /* ── SHOWS ── */
  .shows { background: var(--dark); }
  .shows-inner { max-width: 1200px; margin: 0 auto; }
  .shows-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .show-card {
    background: var(--dark3);
    border: 1px solid var(--border);
    border-radius: 3px;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.25s, transform 0.25s;
  }
  .show-card:hover { border-color: var(--gold); transform: translateY(-3px); }
  .show-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
  }
  .show-type {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .show-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
  .show-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 1rem;
  }
  .show-desc {
    font-size: 0.92rem;
    color: var(--text2);
    line-height: 1.75;
    font-weight: 300;
    margin-bottom: 2rem;
  }
  .show-platforms {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem;
  }
  .platform-badge {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    border: 1px solid var(--border2);
    padding: 0.3rem 0.7rem;
    border-radius: 2px;
    font-weight: 500;
  }
  .show-link {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.2s;
  }
  .show-link:hover { gap: 0.85rem; }

  /* ── DEVOTIONAL ── */
  .devotional {
    background: var(--dark4);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 6rem 3rem;
  }
  .devotional-inner {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
  }
  .devotional-verse {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-style: italic;
    line-height: 1.55;
    color: var(--text);
    margin-bottom: 1.25rem;
    position: relative;
  }
  .devotional-verse::before {
    content: '\201C';
    font-size: 8rem;
    color: var(--gold);
    opacity: 0.08;
    position: absolute;
    top: -2rem;
    left: -1rem;
    font-style: normal;
    line-height: 1;
    pointer-events: none;
  }
  .devotional-ref {
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 2rem;
  }
  .devotional-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 0 auto 2rem;
  }
  .devotional-reflection {
    font-size: 1rem;
    color: var(--text2);
    line-height: 1.85;
    font-weight: 300;
    max-width: 60ch;
    margin: 0 auto 2.5rem;
  }

  /* ── EVENTS ── */
  .events { background: var(--dark2); }
  .events-inner { max-width: 1000px; margin: 0 auto; }
  .events-list {
    margin-top: 3rem;
    border: 1px solid var(--border);
    border-radius: 3px;
    overflow: hidden;
  }
  .event-row {
    display: grid;
    grid-template-columns: 88px 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 1.75rem 2rem;
    background: var(--dark3);
    border-bottom: 1px solid var(--border);
    transition: background 0.2s;
    text-decoration: none;
    color: inherit;
  }
  .event-row:last-child { border-bottom: none; }
  .event-row:hover { background: var(--dark4); }
  .event-date { text-align: center; }
  .event-month { font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
  .event-day { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; line-height: 1; color: var(--text); }
  .event-title { font-size: 1rem; font-weight: 500; color: var(--text); margin-bottom: 0.3rem; }
  .event-loc { font-size: 0.82rem; color: var(--muted); font-weight: 300; }
  .event-badge {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid var(--border2);
    color: var(--muted);
    padding: 0.4rem 1rem;
    border-radius: 2px;
    white-space: nowrap;
    font-weight: 500;
    transition: border-color 0.2s, color 0.2s;
  }
  .event-row:hover .event-badge { border-color: var(--gold); color: var(--gold); }

  /* ── MERCH ── */
  .merch { background: var(--dark); }
  .merch-inner { max-width: 1200px; margin: 0 auto; }

  /* ── CONNECT ── */
  .connect {
    background: var(--dark3);
    border-top: 1px solid var(--border);
    padding: 6rem 3rem;
  }
  .connect-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
  }
  .connect .gold-bar { margin: 0 auto 2rem; }
  .connect-sub {
    font-size: 1.05rem;
    color: var(--text2);
    line-height: 1.8;
    font-weight: 300;
    margin-bottom: 2.5rem;
  }
  .connect-form {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  .connect-form input {
    flex: 1;
    min-width: 220px;
    background: var(--dark5);
    border: 1px solid var(--border2);
    color: var(--text);
    padding: 0.9rem 1.25rem;
    font-size: 0.9rem;
    border-radius: 2px;
    font-family: 'Barlow', sans-serif;
    outline: none;
    transition: border-color 0.2s;
  }
  .connect-form input::placeholder { color: var(--muted); }
  .connect-form input:focus { border-color: var(--gold); }
  .connect-form button {
    background: var(--gold);
    color: var(--dark);
    padding: 0.9rem 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-family: 'Barlow', sans-serif;
    transition: background 0.2s;
    white-space: nowrap;
  }
  .connect-form button:hover { background: var(--gold-light); }
  .connect-privacy { font-size: 0.72rem; color: var(--muted); margin-top: 1rem; }

  /* ── FOOTER ── */
  footer {
    background: var(--dark2);
    border-top: 1px solid var(--border);
    padding: 3.5rem 3rem 2rem;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--border);
    margin-bottom: 2rem;
  }
  .footer-logo-main { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--gold); margin-bottom: 0.5rem; }
  .footer-tagline { font-size: 0.75rem; color: var(--muted); line-height: 1.7; font-weight: 300; margin-bottom: 1.5rem; }
  .footer-social { display: flex; gap: 0.75rem; }
  .social-btn {
    width: 34px; height: 34px;
    border: 1px solid var(--border2);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: border-color 0.2s, color 0.2s;
  }
  .social-btn:hover { border-color: var(--gold); color: var(--gold); }
  .footer-col-title { font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1.25rem; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
  .footer-col ul a { color: var(--muted); text-decoration: none; font-size: 0.85rem; font-weight: 300; transition: color 0.2s; }
  .footer-col ul a:hover { color: var(--gold); }
  .footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
  .footer-copy { font-size: 0.72rem; color: var(--muted); }
  .footer-faith { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); font-style: italic; }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .hero-content > * { opacity: 0; animation: fadeUp 0.7s ease forwards; }
  .eyebrow        { animation-delay: 0.1s; }
  .hero-title     { animation-delay: 0.25s; }
  .hero-sub       { animation-delay: 0.4s; }
  .hero-buttons   { animation-delay: 0.55s; }
  .hero-stats     { animation-delay: 0.7s; }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    nav { padding: 0 1.5rem; }
    .nav-links { gap: 1.5rem; }
    section { padding: 4rem 1.5rem; }
    .hero { padding: 7rem 1.5rem 4rem; }
    .mission-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-inner { grid-template-columns: 1fr; gap: 3rem; }
    .about-img { max-width: 320px; margin: 0 auto; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .event-row { grid-template-columns: 72px 1fr; }
    .event-badge { display: none; }
  }
  @media (max-width: 600px) {
    .nav-links { display: none; }
    .nav-hamburger { display: flex; }
    .hero-stats { gap: 2rem; }
    .hero-episode-panel { display: none; }
    .hero-content { max-width: 100% !important; }
    .footer-top { grid-template-columns: 1fr; }
    .connect-form { flex-direction: column; }
    .connect-form input, .connect-form button { width: 100%; }
  }