<style>
  *{box-sizing:border-box;margin:0;padding:0}
  img{max-width:100%;display:block}
  a{text-decoration:none;color:inherit}
  button,input{font:inherit}
  html{scroll-behavior:smooth}

  :root{
    --bg:#0c0c0c;
    --black:#000;
    --panel:#101010;
    --card:#151515;
    --text:#fff;
    --muted:rgba(255,255,255,.75);
    --stroke:rgba(255,255,255,.10);
    --accent:#e63946;
    --accent2:#ff4d57;
    --container:1200px;
    --shadow:0 25px 70px rgba(0,0,0,.55);
  }

  body{
    font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    background:
      radial-gradient(900px 500px at 20% -10%, rgba(230,57,70,.18), transparent 55%),
      radial-gradient(900px 500px at 90% 10%, rgba(230,57,70,.12), transparent 55%),
      var(--bg);
    color:var(--text);
    line-height:1.65;
    overflow-x:hidden;
    padding-top:86px;
  }

  .container{max-width:var(--container);margin:0 auto;padding:0 22px}
  section{padding:110px 0}
  @media(max-width:900px){section{padding:78px 0}}
  section + section{border-top:1px solid rgba(255,255,255,.06)}

  /* ================= HEADER ================= */
  header{
    position:fixed;top:0;left:0;width:100%;z-index:2000;height:86px;
    background:rgba(0,0,0,.88);
    border-bottom:1px solid rgba(255,255,255,.06);
    backdrop-filter:blur(10px);
  }
  .header-inner{height:100%;display:flex;align-items:center;justify-content:space-between;gap:16px}
  .brand{display:flex;align-items:center;gap:12px;min-width:220px}
  .brand img{width:38px;height:38px;border-radius:10px}
  .brand .name{font-weight:950;letter-spacing:.2px;white-space:nowrap;line-height:1.05}
  .brand .tag{display:block;font-size:.78rem;color:var(--muted);margin-top:2px;line-height:1.1}

  nav.desktop{display:flex;align-items:center;gap:26px}
  nav.desktop a{
    font-size:.92rem;color:rgba(255,255,255,.86);
    position:relative;padding:6px 0;font-weight:800;letter-spacing:.2px
  }
  nav.desktop a:hover{color:#fff}
  nav.desktop a::after{
    content:"";position:absolute;left:0;bottom:-8px;width:100%;height:2px;
    background:var(--accent);transform:scaleX(0);transform-origin:left;
    transition:transform .25s ease;border-radius:999px
  }
  nav.desktop a:hover::after{transform:scaleX(1)}

  .header-actions{display:flex;align-items:center;gap:10px}

  .btn{
    display:inline-flex;align-items:center;justify-content:center;gap:10px;
    padding:14px 20px;border-radius:999px;font-weight:900;font-size:.9rem;
    border:1px solid var(--stroke);background:rgba(255,255,255,.06);color:#fff;
    cursor:pointer;transition:transform .18s ease,background .18s ease,border-color .18s ease,box-shadow .18s ease;
    user-select:none;white-space:nowrap
  }
  .btn:hover{transform:translateY(-1px);background:rgba(255,255,255,.10);border-color:rgba(255,255,255,.18)}
  .btn.primary{
    border:none;background:linear-gradient(90deg,var(--accent),var(--accent2));
    box-shadow:0 14px 35px rgba(230,57,70,.22)
  }

  .icon-btn{
    width:42px;height:42px;border-radius:999px;border:1px solid var(--stroke);
    background:rgba(255,255,255,.06);display:flex;align-items:center;justify-content:center;
    cursor:pointer;transition:transform .18s ease,background .18s ease
  }
  .icon-btn:hover{transform:translateY(-1px);background:rgba(255,255,255,.10)}
  .search-icon{
    width:18px;height:18px;border:2px solid #fff;border-radius:50%;position:relative;opacity:.95
  }
  .search-icon::after{
    content:"";position:absolute;width:10px;height:2px;background:#fff;right:-8px;bottom:-2px;
    transform:rotate(45deg);border-radius:999px
  }

  .hamburger{
    display:none;width:44px;height:44px;border-radius:999px;border:1px solid var(--stroke);
    background:rgba(255,255,255,.06);cursor:pointer;padding:0;
    align-items:center;justify-content:center;gap:6px;flex-direction:column
  }
  .hamburger span{width:20px;height:2px;background:#fff;border-radius:999px;opacity:.95}
  @media(max-width:980px){
    nav.desktop{display:none}
    .hamburger{display:flex}
    .brand{min-width:auto}
  }

  /* ================= MOBILE MENU ================= */
  .mobile-panel{
    position:fixed;inset:0;background:rgba(0,0,0,.86);backdrop-filter:blur(14px);
    display:none;z-index:2500
  }
  .mobile-panel.active{display:block}
  .mobile-sheet{
    position:absolute;top:0;right:0;height:100%;width:min(420px,92vw);
    background:linear-gradient(180deg,rgba(18,18,18,.98),rgba(0,0,0,.98));
    border-left:1px solid rgba(255,255,255,.08);
    box-shadow:-30px 0 90px rgba(0,0,0,.65);
    padding:22px;display:flex;flex-direction:column;gap:16px;
    animation:sheetIn .25s ease forwards
  }
  @keyframes sheetIn{from{transform:translateX(18px);opacity:0}to{transform:translateX(0);opacity:1}}
  .mobile-top{display:flex;align-items:center;justify-content:space-between;gap:14px;padding-bottom:10px;border-bottom:1px solid rgba(255,255,255,.08)}
  .close-x{
    width:44px;height:44px;border-radius:999px;border:1px solid var(--stroke);
    background:rgba(255,255,255,.06);cursor:pointer;position:relative
  }
  .close-x::before,.close-x::after{
    content:"";position:absolute;top:50%;left:50%;width:20px;height:2px;background:#fff;border-radius:999px
  }
  .close-x::before{transform:translate(-50%,-50%) rotate(45deg)}
  .close-x::after{transform:translate(-50%,-50%) rotate(-45deg)}
  .mobile-nav{display:flex;flex-direction:column;gap:10px;padding:10px 0}
  .mobile-nav a{
    padding:14px 14px;border-radius:14px;background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);font-weight:900;letter-spacing:.2px
  }
  .mobile-actions{display:flex;flex-direction:column;gap:12px;margin-top:6px}
  .mobile-actions .btn{width:100%}

  /* ================= SEARCH OVERLAY ================= */
  .search-overlay{
    position:fixed;inset:0;background:rgba(0,0,0,.86);backdrop-filter:blur(14px);
    display:none;z-index:2600;padding:92px 0 40px
  }
  .search-overlay.active{display:block}
  .search-box{max-width:780px;margin:0 auto;padding:0 22px}
  .search-bar{
    display:flex;align-items:center;gap:12px;background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.10);border-radius:999px;padding:14px 16px;box-shadow:var(--shadow)
  }
  .search-bar input{width:100%;background:transparent;border:none;outline:none;color:#fff;font-size:1rem}
  .search-results{
    margin-top:16px;background:rgba(21,21,21,.85);border:1px solid rgba(255,255,255,.08);
    border-radius:18px;overflow:hidden
  }
  .result-item{padding:14px 16px;border-bottom:1px solid rgba(255,255,255,.08);display:block}
  .result-item:last-child{border-bottom:none}
  .result-item strong{display:block;font-size:.98rem;font-weight:900}
  .result-item span{display:block;color:var(--muted);font-size:.86rem;margin-top:4px}
  .no-results{padding:18px 16px;color:rgba(255,255,255,.70)}

  /* ================= HERO SLIDESHOW (CUSTOM IMAGES) ================= */
  .hero{
    min-height:92vh;
    padding-top:110px;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
  }
  .hero::before{
    content:"";
    position:absolute;inset:0;z-index:2;
    background:
      linear-gradient(90deg,rgba(0,0,0,.88) 0%,rgba(0,0,0,.66) 45%,rgba(0,0,0,.40) 72%,rgba(0,0,0,.22) 100%),
      radial-gradient(850px 520px at 30% 35%,rgba(230,57,70,.18),transparent 58%),
      radial-gradient(850px 520px at 70% 60%,rgba(230,57,70,.10),transparent 62%);
  }

  .hero-slides{position:absolute;inset:0;z-index:1}
  .hero-slide{
    position:absolute;inset:0;
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    opacity:0;
    transform:scale(1.03);
    transition:opacity 1s ease, transform 1.2s ease;
  }
  .hero-slide.active{opacity:1;transform:scale(1.00)}
  @media(max-width:900px){
    .hero{min-height:88vh;padding-top:105px}
    .hero-slide{background-position:center}
  }

  .hero-content{position:relative;z-index:3;max-width:980px;padding:10px 0}
  .hero h1{margin-top:10px;font-size:clamp(2.4rem,5vw,4.2rem);line-height:1.05;letter-spacing:-0.03em;font-weight:950}
  .hero p{margin-top:16px;max-width:680px;color:var(--muted);font-size:1.07rem}

  .hero-actions{margin-top:26px;display:flex;gap:12px;flex-wrap:wrap;align-items:center}
  @media(max-width:900px){ .hero-actions .btn{width:100%} }

  .hero-dots{
    margin-top:18px;display:flex;gap:8px;align-items:center;opacity:.95;flex-wrap:wrap
  }
  .dot{
    width:10px;height:10px;border-radius:999px;
    border:1px solid rgba(255,255,255,.25);
    background:rgba(255,255,255,.12);
    cursor:pointer;transition:transform .2s ease, background .2s ease, border-color .2s ease;
  }
  .dot.active{background:rgba(230,57,70,.9);border-color:rgba(230,57,70,.9);transform:scale(1.12)}
  .dot:hover{transform:scale(1.12)}

  /* One combined Subscribe + Bell button */
  .yt-sub{
    border:none;
    background:linear-gradient(90deg,var(--accent),var(--accent2));
    box-shadow:0 16px 40px rgba(230,57,70,.24);
    position:relative;
    overflow:hidden;
  }
  .yt-sub:hover{transform:translateY(-2px)}
  .yt-sub .spark{
    width:10px;height:10px;border-radius:999px;background:#fff;opacity:.9;
    box-shadow:0 0 0 6px rgba(255,255,255,.15);
    animation:spark 1.6s infinite ease-in-out;
  }
  @keyframes spark{0%,100%{transform:scale(1);opacity:.75}50%{transform:scale(1.25);opacity:1}}
  .yt-sub .bell{
    width:18px;height:18px;display:inline-block;
    background:#fff;
    -webkit-mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M12 22a2.5 2.5 0 0 0 2.45-2h-4.9A2.5 2.5 0 0 0 12 22Zm7-6V11a7 7 0 1 0-14 0v5L3 18v1h18v-1l-2-2Z"/></svg>') center/contain no-repeat;
            mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M12 22a2.5 2.5 0 0 0 2.45-2h-4.9A2.5 2.5 0 0 0 12 22Zm7-6V11a7 7 0 1 0-14 0v5L3 18v1h18v-1l-2-2Z"/></svg>') center/contain no-repeat;
    animation:bell 2.4s infinite ease-in-out;
  }
  @keyframes bell{
    0%,100%{transform:rotate(0deg)}
    10%{transform:rotate(10deg)}
    20%{transform:rotate(-10deg)}
    30%{transform:rotate(6deg)}
    40%{transform:rotate(-6deg)}
    50%{transform:rotate(0deg)}
  }

  /* ================= SECTION TITLE ================= */
  .section-title{
    display:flex;align-items:flex-end;justify-content:space-between;gap:24px;
    flex-wrap:wrap;margin-bottom:26px
  }
  .section-title h2{
    font-size:clamp(1.9rem,4vw,2.6rem);letter-spacing:-0.02em;font-weight:950;line-height:1.1
  }
  .section-title h2::after{
    content:"";display:block;width:56px;height:3px;background:var(--accent);
    border-radius:999px;margin-top:12px
  }
  .section-sub{color:var(--muted);max-width:820px;margin-top:14px;font-size:1rem}

  /* ================= SERMONS GRID ================= */
  .sermons-wrap{padding-top:90px}
  .toolbar{
    display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;
    margin-bottom:22px
  }

  .filter{
    display:flex;gap:10px;align-items:center;flex-wrap:wrap
  }
  .chip{
    padding:10px 14px;border-radius:999px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.10);
    font-weight:900;font-size:.9rem;cursor:pointer;
    transition:transform .15s ease, background .15s ease, border-color .15s ease;
  }
  .chip:hover{transform:translateY(-1px);background:rgba(255,255,255,.10);border-color:rgba(255,255,255,.18)}
  .chip.active{
    background:rgba(230,57,70,.16);
    border-color:rgba(230,57,70,.35);
    box-shadow:0 16px 45px rgba(230,57,70,.12);
  }

  .search-mini{
    flex:1;
    min-width:min(420px, 100%);
    display:flex;align-items:center;gap:10px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.10);
    border-radius:999px;
    padding:12px 14px;
  }
  .search-mini input{
    width:100%;
    background:transparent;border:none;outline:none;color:#fff;font-size:.98rem
  }

  .grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:18px;
  }
  @media(max-width:980px){.grid{grid-template-columns:repeat(2,1fr)}}
  @media(max-width:700px){.grid{grid-template-columns:1fr}}

  .sermon-card{
    background:rgba(21,21,21,.88);
    border:1px solid rgba(255,255,255,.10);
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 22px 70px rgba(0,0,0,.40);
    transition:transform .2s ease, border-color .2s ease, box-shadow .2s ease, background .2s ease;
    position:relative;
    cursor:pointer;
  }
  .sermon-card:hover{
    transform:translateY(-6px);
    border-color:rgba(230,57,70,.30);
    box-shadow:0 30px 95px rgba(0,0,0,.55), 0 0 42px rgba(230,57,70,.10);
    background:rgba(26,26,26,.95);
  }

  .thumb{
    position:relative;
    width:100%;
    aspect-ratio:16/9;
    background:#000;
    overflow:hidden;
  }
  .thumbImg{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    transform:scale(1.03);
    filter:saturate(1.05) contrast(1.05);
  }
  .thumb::after{
    content:"";
    position:absolute;inset:0;
    background:linear-gradient(180deg,rgba(0,0,0,0) 35%, rgba(0,0,0,.55));
    pointer-events:none;
  }

  .preview{
    position:absolute;inset:0;
    opacity:0;
    transition:opacity .25s ease;
    pointer-events:none;
    background:#000;
  }
  .sermon-card.hovering .preview{opacity:1}
  .preview iframe{
    width:100%;
    height:100%;
    border:0;
    display:block;
  }

  /* small keyword pill (first keyword) */
  .k-pill{
    position:absolute;left:12px;top:12px;
    padding:8px 10px;border-radius:999px;
    background:rgba(0,0,0,.60);
    border:1px solid rgba(255,255,255,.16);
    backdrop-filter:blur(10px);
    font-weight:950;font-size:.78rem;
    letter-spacing:.10em;text-transform:uppercase;
    z-index:3;
  }

  .playpill{
    position:absolute;right:12px;top:12px;
    width:42px;height:42px;border-radius:999px;
    background:rgba(230,57,70,.18);
    border:1px solid rgba(230,57,70,.35);
    display:flex;align-items:center;justify-content:center;
    z-index:3;
    box-shadow:0 18px 55px rgba(230,57,70,.12);
  }
  .playpill::before{
    content:"";
    width:0;height:0;
    border-style:solid;
    border-width:8px 0 8px 12px;
    border-color:transparent transparent transparent #fff;
    margin-left:2px;
  }

  .body{padding:16px 16px 18px}
  .body h3{font-size:1.05rem;font-weight:950;line-height:1.25;letter-spacing:-0.01em}
  .meta{margin-top:8px;color:rgba(255,255,255,.78);font-size:.92rem;font-weight:800}
  .desc{margin-top:10px;color:var(--muted);font-size:.94rem;line-height:1.75}
  .actions{margin-top:14px;display:flex;gap:10px;flex-wrap:wrap}
  .actions a{
    padding:10px 14px;border-radius:999px;
    border:none;
    background:linear-gradient(90deg,var(--accent),var(--accent2));
    box-shadow:0 14px 35px rgba(230,57,70,.18);
    font-weight:950;font-size:.88rem;
    transition:transform .15s ease, filter .15s ease;
  }
  .actions a:hover{transform:translateY(-1px);filter:brightness(1.05)}

  .sermon-card::after{
    content:"";
    position:absolute;left:0;right:0;bottom:-20px;height:20px;
    background:linear-gradient(to bottom, rgba(255,255,255,.14), rgba(255,255,255,0));
    transform:scaleY(-1);
    filter:blur(7px);
    opacity:.28;
    pointer-events:none;
  }

  /* ================= FOOTER ================= */
  footer{
    border-top:1px solid rgba(255,255,255,.08);
    background:linear-gradient(180deg,rgba(21,21,21,.7),rgba(0,0,0,.98));
    padding:70px 0 28px
  }
  .footer-grid{display:grid;grid-template-columns:1.2fr .9fr .9fr 1.1fr;gap:22px}
  .footer-card{
    background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);
    border-radius:18px;padding:18px
  }
  .footer-brand{display:flex;align-items:center;gap:12px;margin-bottom:12px}
  .footer-brand img{width:40px;height:40px;border-radius:12px}
  .footer-card h4{font-size:1rem;font-weight:950;margin-bottom:10px}
  .footer-card p,.footer-card a,.footer-card li{color:rgba(255,255,255,.78);font-size:.92rem;line-height:1.7}
  .footer-links{list-style:none;display:flex;flex-direction:column;gap:10px}
  .footer-links a:hover{color:#fff}
  .socials{display:flex;gap:10px;flex-wrap:wrap;margin-top:8px}
  .social{
    width:42px;height:42px;border-radius:999px;border:1px solid rgba(255,255,255,.10);
    background:rgba(255,255,255,.06);display:flex;align-items:center;justify-content:center;
    transition:transform .18s ease,background .18s ease,border-color .18s ease
  }
  .social:hover{transform:translateY(-2px);background:rgba(255,255,255,.10);border-color:rgba(230,57,70,.28)}
  .social svg{width:20px;height:20px;fill:#fff;opacity:.92}
  .subscribe{display:flex;gap:10px;margin-top:10px}
  .subscribe input{
    flex:1;background:rgba(0,0,0,.25);border:1px solid rgba(255,255,255,.10);
    border-radius:999px;padding:12px 14px;color:#fff;outline:none
  }
  .subscribe button{
    border:none;background:linear-gradient(90deg,var(--accent),var(--accent2));
    border-radius:999px;padding:12px 16px;font-weight:950;color:#fff;cursor:pointer
  }
  .footer-bottom{
    margin-top:22px;padding-top:22px;border-top:1px solid rgba(255,255,255,.08);
    display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:10px;
    color:rgba(255,255,255,.65);font-size:.9rem
  }
  @media(max-width:980px){.footer-grid{grid-template-columns:1fr}}

  /* ================= FLOATING BACK TO TOP ================= */
  .to-top{
    position:fixed;right:18px;bottom:18px;width:54px;height:54px;border-radius:999px;
    border:1px solid rgba(230,57,70,.35);
    background:rgba(230,57,70,.14);
    box-shadow:0 22px 70px rgba(230,57,70,.18);
    display:flex;align-items:center;justify-content:center;cursor:pointer;z-index:4000;
    opacity:0;transform:translateY(10px);
    transition:opacity .2s ease, transform .2s ease, background .2s ease
  }
  .to-top:hover{background:rgba(230,57,70,.22);transform:translateY(6px)}
  .to-top.show{opacity:1;transform:translateY(0)}
  .to-top svg{width:22px;height:22px;fill:#fff;opacity:.95}
  /* ===== Desktop dropdown (Serve) ===== */
.nav-dd{ position:relative; display:flex; align-items:center; }
.nav-dd-btn{
  background: transparent;
  border: 0;
  color: rgba(255,255,255,.86);
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .2px;
  padding: 6px 0;
  cursor: pointer;
  display:flex;
  align-items:center;
  gap: 6px;
}
.nav-dd-btn:hover{ color:#fff; }

.nav-caret{ opacity:.85; font-size:.9em; transform: translateY(-1px); }

.nav-dd-menu{
  position:absolute;
  top: calc(100% + 14px);
  left: -14px;
  min-width: 220px;
  background: rgba(18,18,18,.98);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  box-shadow: 0 25px 70px rgba(0,0,0,.60);
  padding: 10px;
  display:none;
  z-index: 3000;
}

.nav-dd-menu a{
  display:block;
  padding: 12px 12px;
  border-radius: 12px;
  font-weight: 900;
  color: rgba(255,255,255,.88);
}
.nav-dd-menu a:hover{
  background: rgba(255,255,255,.06);
  color:#fff;
}

/* open state */
.nav-dd.open .nav-dd-menu{ display:block; }

/* ===== Mobile grouping ===== */
.m-group{
  margin: 6px 0 10px;
  padding: 10px;
  border-radius: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}
.m-group-title{
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .76rem;
  opacity: .85;
  margin-bottom: 8px;
}
.m-sub{
  display:block;
  padding: 12px 12px;
  border-radius: 12px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  margin-top: 8px;
  font-weight: 900;
}
/* ===== MOBILE SERVE ACCORDION (details/summary) ===== */
@media (max-width:980px){

  .m-acc{
    margin: 6px 0 10px;
    border-radius: 14px;
    background: rgba(255,255,255,.02);
    border: 1px solid rgba(255,255,255,.08);
    overflow: hidden;
  }

  /* Remove default marker */
  .m-acc summary{ list-style:none; }
  .m-acc summary::-webkit-details-marker{ display:none; }

  .m-acc-btn{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:12px 12px;
    cursor:pointer;
    font-weight:950;
    letter-spacing:.2px;
    font-size:.95rem;
    color:#fff;
    background: transparent;
  }

  .m-acc-caret{
    opacity:.9;
    transition: transform .18s ease;
  }
  .m-acc[open] .m-acc-caret{
    transform: rotate(180deg);
  }

  .m-acc-panel{
    padding: 0 10px 12px;
    display:flex;
    flex-direction:column;
    gap:8px;
  }

  /* keep sub links compact */
  .m-acc-panel .m-sub{
    margin-top:0;
  }
}
/* =========================================================
   SERMONS — MATCH GET INVOLVED (HEADER + MOBILE MENU SPACING)
   Paste at the VERY END of your CSS
========================================================= */

/* ✅ Header goes full width (removes 1200px cap in header only) */
header .container.header-inner{
  max-width: none;
  width: 100%;
  padding-left: 14px;
  padding-right: 14px;
}

/* ✅ Don’t let the brand push actions away */
header .brand{
  min-width: 0;
}

/* ✅ Keep actions hard-right */
header .header-actions{
  margin-left: auto;
}

/* =========================
   MOBILE HEADER ACTIONS
========================= */
@media (max-width: 980px){
  header .header-inner{
    display:flex !important;
    align-items:center !important;
    justify-content:space-between !important;
    gap: 14px !important;
  }

  header .brand{
    gap: 10px !important;
    min-width: 0 !important;
  }

  header .brand img{
    width: 34px !important;
    height: 34px !important;
    border-radius: 9px !important;
  }

  header .header-actions{
    display:flex !important;
    align-items:center !important;
    justify-content:flex-end !important;
    gap: 16px !important;
  }

  .icon-btn,
  .hamburger{
    width: 42px !important;
    height: 42px !important;
    border-radius: 999px !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    padding: 0 !important;
  }

  .hamburger{
    gap: 6px !important;
  }
  .hamburger span{
    width: 20px !important;
    height: 2px !important;
    border-radius: 999px !important;
  }
}

/* =========================
   MOBILE MENU — COMPACT LIKE GET INVOLVED
========================= */
@media (max-width: 980px){

  .mobile-panel{
    background: rgba(0,0,0,.88) !important;
    backdrop-filter: blur(14px) !important;
  }

  .mobile-sheet{
    width: min(360px, 90vw) !important;
    padding: 16px !important;
    gap: 12px !important;
  }

  .mobile-top{
    gap: 14px !important;
    padding-bottom: 8px !important;
  }

  /* Brand in mobile sheet */
  .mobile-top .brand{
    gap: 10px !important;
    min-width: 0 !important;
  }
  .mobile-top .brand img{
    width: 32px !important;
    height: 32px !important;
    border-radius: 8px !important;
  }
  .mobile-top .name{
    font-size: .95rem !important;
    font-weight: 900 !important;
    line-height: 1.05 !important;
  }
  .mobile-top .tag{
    font-size: .72rem !important;
    opacity: .7 !important;
    margin-top: 2px !important;
    line-height: 1.1 !important;
  }

  /* Close button smaller like reference */
  .close-x{
    width: 36px !important;
    height: 36px !important;
  }
  .close-x::before,
  .close-x::after{
    width: 18px !important;
    height: 2px !important;
  }

  /* Nav links spacing */
  .mobile-nav{
    gap: 8px !important;
    padding: 10px 0 !important;
  }

  .mobile-nav a{
    padding: 11px 12px !important;
    border-radius: 12px !important;
    font-size: .94rem !important;
    font-weight: 900 !important;
    background: transparent !important;                 /* cleaner like Get Involved */
    border: 1px solid rgba(255,255,255,.08) !important;
  }
  .mobile-nav a:hover{
    background: rgba(255,255,255,.05) !important;
  }

  /* Serve accordion block */
  .m-acc{
    margin: 6px 0 10px !important;
    border-radius: 14px !important;
    background: rgba(255,255,255,.02) !important;
    border: 1px solid rgba(255,255,255,.08) !important;
  }

  .m-acc-btn{
    padding: 12px 12px !important;
    font-size: .94rem !important;
  }

  .m-acc-panel{
    padding: 0 10px 12px !important;
    gap: 8px !important;
  }

  .m-sub{
    padding: 10px 12px !important;
    border-radius: 12px !important;
    font-size: .93rem !important;
    background: transparent !important;
    border: 1px solid rgba(255,255,255,.08) !important;
    font-weight: 900 !important;
  }
  .m-sub:hover{
    background: rgba(255,255,255,.05) !important;
  }

  /* Buttons */
  .mobile-actions{
    gap: 10px !important;
    margin-top: 10px !important;
  }
  .mobile-actions .btn{
    padding: 11px 14px !important;
    font-size: .90rem !important;
  }

  /* Contact text at bottom */
  .mobile-sheet > div:last-child{
    font-size: .82rem !important;
    opacity: .65 !important;
  }
}
/* =============================
   HEADER: EXTREME LEFT + RIGHT
   (Sermons page)
============================= */

/* Header should ignore site container padding */
header .container.header-inner{
  max-width: none !important;
  width: 100% !important;
  padding-left: 10px !important;   /* tighter edge */
  padding-right: 10px !important;
}

/* Remove the forced width that keeps logo away from edge */
header .brand{
  min-width: 0 !important;         /* overrides min-width:220px */
  margin-left: 0 !important;
}

/* Keep logo + name compact */
header .brand img{
  margin-left: 0 !important;
}

/* Nav can take center space on desktop */
@media (min-width: 981px){
  header nav.desktop{
    flex: 1 !important;
    justify-content: center !important;
    gap: 18px !important;
    white-space: nowrap;
  }
}

/* Actions (search + hamburger) stay hard right */
header .header-actions{
  margin-left: auto !important;
  justify-content: flex-end !important;
}
/* ============================
   NEEMA WORSHIP (PREMIUM CARD)
============================ */
.worship-wrap{ padding-top: 70px; padding-bottom: 0; }
.worship-card{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: stretch;
  background: linear-gradient(180deg, rgba(21,21,21,.92), rgba(0,0,0,.70));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 95px rgba(0,0,0,.55), 0 0 60px rgba(230,57,70,.12);
  position: relative;
}
.worship-card::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(900px 520px at 20% 20%, rgba(230,57,70,.16), transparent 60%),
    radial-gradient(900px 520px at 85% 65%, rgba(255,77,87,.10), transparent 62%);
  pointer-events:none;
}
.worship-left{
  position:relative;
  z-index:2;
  padding: 22px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.worship-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .78rem;
  color: rgba(255,255,255,.80);
}
.worship-kicker .dotx{
  width:10px;height:10px;border-radius:999px;
  background: rgba(230,57,70,.95);
  box-shadow: 0 0 0 6px rgba(230,57,70,.14);
}
.worship-title{
  margin-top: 12px;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 950;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.worship-desc{
  margin-top: 10px;
  color: rgba(255,255,255,.75);
  max-width: 520px;
  font-size: 1rem;
}
.worship-actions{
  margin-top: 16px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
}
.worship-actions .btn{
  padding: 12px 16px;
  font-size: .9rem;
}
.btn.outline{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}
.btn.outline:hover{ background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.18); }

.worship-media{
  position:relative;
  z-index:2;
  min-height: 320px;
  background:#000;
  overflow:hidden;
}
.worship-media .thumbImg{
  width:100%;
  height:100%;
  object-fit:cover;
  transform: scale(1.03);
}
.worship-media::after{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.65) 0%, rgba(0,0,0,.20) 55%, rgba(0,0,0,.10) 100%),
    linear-gradient(180deg, rgba(0,0,0,0) 40%, rgba(0,0,0,.55));
  pointer-events:none;
}
.worship-pill{
  position:absolute; left:14px; top:14px;
  padding:8px 10px;
  border-radius:999px;
  background: rgba(0,0,0,.60);
  border:1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  font-weight: 950;
  font-size: .78rem;
  letter-spacing: .10em;
  text-transform: uppercase;
  z-index: 3;
}
.worship-play{
  position:absolute; right:14px; top:14px;
  width:46px; height:46px; border-radius:999px;
  background: rgba(230,57,70,.18);
  border:1px solid rgba(230,57,70,.35);
  box-shadow: 0 18px 55px rgba(230,57,70,.12);
  display:flex; align-items:center; justify-content:center;
  z-index:3;
}
.worship-play::before{
  content:"";
  width:0;height:0;
  border-style:solid;
  border-width:9px 0 9px 13px;
  border-color:transparent transparent transparent #fff;
  margin-left:2px;
}

/* hover preview like sermon cards */
.worship-preview{
  position:absolute; inset:0;
  opacity:0;
  transition: opacity .25s ease;
  pointer-events:none;
  background:#000;
  z-index:2;
}
.worship-card.hovering .worship-preview{ opacity: 1; }
.worship-preview iframe{ width:100%; height:100%; border:0; display:block; }

@media (max-width: 980px){
  .worship-card{ grid-template-columns: 1fr; }
  .worship-media{ min-height: 230px; }
}
/* =========================
   HERO BUTTON: NEEMA WORSHIP
========================= */
.worship-btn{
  border:none;
  background: linear-gradient(90deg, rgba(90,160,255,.95), rgba(230,57,70,.95));
  box-shadow: 0 16px 40px rgba(90,160,255,.14), 0 16px 40px rgba(230,57,70,.14);
  position: relative;
  overflow:hidden;
}

.worship-btn:hover{ transform: translateY(-2px); }

.worship-btn .music{
  width:18px;height:18px;display:inline-block;
  background:#fff;
  -webkit-mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M12 3v10.55A4 4 0 1 0 14 17V7h6V3h-8Z"/></svg>') center/contain no-repeat;
          mask:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M12 3v10.55A4 4 0 1 0 14 17V7h6V3h-8Z"/></svg>') center/contain no-repeat;
  animation: musicBounce 1.9s infinite ease-in-out;
  transform-origin: center;
}

/* tiny “sound wave” shimmer */
.worship-btn::after{
  content:"";
  position:absolute;
  inset:-40%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.22), transparent 45%);
  opacity:.55;
  transform: translateX(-40%) rotate(12deg);
  animation: musicWave 2.4s infinite ease-in-out;
  pointer-events:none;
}

@keyframes musicBounce{
  0%,100%{ transform: translateY(0) rotate(0deg) scale(1); opacity:.95; }
  20%{ transform: translateY(-2px) rotate(-6deg) scale(1.04); opacity:1; }
  40%{ transform: translateY(1px) rotate(6deg) scale(1.02); }
  60%{ transform: translateY(-1px) rotate(-3deg) scale(1.03); }
}

@keyframes musicWave{
  0%,100%{ transform: translateX(-40%) rotate(12deg); }
  50%{ transform: translateX(40%) rotate(12deg); }
}

</style>