  :root {
    /* Editorial palette — warmer than the app brand teal so the website
       reads as an editorial publication, not as the app's chrome. The app
       brand still appears (CTAs, link hover) but doesn't dominate the page. */
    --ink: #0F1114;
    --ink-2: #3C3C43;
    --ink-3: #8E8E93;
    --paper: #FFFFFF;
    --paper-2: #F2F2F7;
    --line: #E5E5EA;
    --line-2: #D1D1D6;
    --brand: #4BBBDD;          /* matches app — Kalameh teal */
    --brand-deep: #2D97BA;
    --teal: #4BBBDD;
    --gate: #B23A48;
    --open: #2E7D5B;
  }
  * { box-sizing: border-box; }
  html, body { margin: 0; padding: 0; }
  body {
    background: var(--paper);
    color: var(--ink);
    font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    line-height: 1.55;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
  }
  img { display: block; max-width: 100%; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; font-size: inherit; cursor: pointer; }

  /* ----- Layout primitives ----- */
  .wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
  .wrap-narrow { max-width: 880px; margin: 0 auto; padding: 0 32px; }

  /* ----- Type ----- */
  .serif { font-family: "Iowan Old Style", "Charter", Georgia, serif; }
  .eyebrow {
    text-transform: uppercase; letter-spacing: 2.4px; font-size: var(--fs-eyebrow);
    font-weight: 700; color: var(--brand);
  }
  .eyebrow-ink { color: var(--ink-3); }
  h1, h2, h3, h4 { font-family: "Iowan Old Style", "Charter", Georgia, serif; font-weight: 600; letter-spacing: -0.3px; margin: 0; }
  p { margin: 0 0 1em; }

  /* ----- Header ----- */
  .site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(251,248,242,0.92);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
  }
  .site-header .row {
    display: flex; align-items: center; gap: 28px;
    height: 68px;
  }
  .site-header .logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
  .site-header .logo img { height: 28px; }
  .site-header nav.primary {
    display: flex; gap: 26px; flex: 1;
  }
  .site-header nav.primary a {
    font-size: 14.5px; font-weight: 500; color: var(--ink-2);
    padding: 22px 0;
    border-bottom: 2px solid transparent;
    transition: color .15s, border-color .15s;
  }
  .site-header nav.primary a:hover { color: var(--ink); border-bottom-color: var(--brand); }
  .header-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
  .icon-btn {
    width: 38px; height: 38px; border-radius: 999px;
    border: 1px solid transparent; background: transparent;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--ink-2);
  }
  .icon-btn:hover { background: var(--paper-2); color: var(--ink); }
  .lang-toggle {
    display: inline-flex; padding: 4px;
    background: var(--paper-2); border-radius: 999px;
    font-size: 12px; font-weight: 600;
  }
  .lang-toggle button {
    border: none; background: transparent; padding: 5px 11px;
    border-radius: 999px; color: var(--ink-3);
  }
  .lang-toggle button.on { background: #fff; color: var(--ink); box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
  .btn-app {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 16px; border-radius: 999px;
    background: var(--ink); color: #fff; border: none;
    font-size: 13.5px; font-weight: 600;
  }
  .btn-app:hover { background: #2D2925; }
  .btn-app svg { width: 14px; height: 14px; }
  .btn-burger { display: none; }

  /* ----- Hero — compact, fellowship-led, with peek of next section ----- */
  .hero {
    position: relative; overflow: hidden;
    border-bottom: 1px solid var(--line);
    padding: 48px 0 56px;
    background:
      radial-gradient(1000px 480px at 80% 100%, rgba(146,104,170,0.10), transparent 70%),
      radial-gradient(700px 400px at 5% -10%, rgba(75,187,221,0.07), transparent 70%),
      var(--paper);
  }
  .hero .grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 56px; align-items: center;
    position: relative;
  }
  .hero .scroll-cue {
    position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%);
    display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
    color: var(--ink-3); font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase; font-weight: 700;
  }
  .hero .scroll-cue .line {
    width: 1px; height: 28px; background: linear-gradient(180deg, var(--ink-3), transparent);
    animation: cue 1.8s ease-in-out infinite;
  }
  @keyframes cue { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }
  .hero .copy .eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    margin-bottom: 28px;
    padding: 6px 14px 6px 8px; border-radius: 999px;
    background: #fff; border: 1px solid var(--line);
    font-size: 12px; letter-spacing: 1.4px;
    box-shadow: 0 1px 2px rgba(20,24,30,0.04);
  }
  .hero .copy .eyebrow::before {
    content: ""; width: 18px; height: 18px; border-radius: 50%;
    background: linear-gradient(135deg, var(--brand), var(--brand-deep));
  }
  .hero h1 {
    font-size: 54px; line-height: 1.02; letter-spacing: -1.6px;
    margin-bottom: 20px;
    font-weight: 500;
  }
  .hero h1 .accent {
    font-style: normal; font-weight: 400; color: var(--brand);
    position: relative; white-space: nowrap;
  }
  .hero h1 .accent::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: 0.04em;
    height: 0.18em; background: linear-gradient(90deg, rgba(75,187,221,0.22), rgba(75,187,221,0));
    z-index: -1; border-radius: 4px;
  }
  .hero .lede {
    font-size: 17.5px; line-height: 1.55; color: var(--ink-2);
    max-width: 500px; margin-bottom: 28px;
  }
  .hero .ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
  .btn-primary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 24px; border-radius: 999px;
    background: var(--brand); color: #fff; border: none;
    font-size: 14.5px; font-weight: 600;
    box-shadow: 0 8px 18px -8px rgba(75,187,221,0.55);
  }
  .btn-primary:hover { background: var(--brand-deep); }
  .btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 22px; border-radius: 999px;
    background: #fff; color: var(--ink); border: 1px solid var(--line-2);
    font-size: 14.5px; font-weight: 600;
  }
  .btn-secondary:hover { border-color: var(--ink); }
  .hero .trust {
    margin-top: 28px; display: flex; gap: 22px; align-items: center;
    font-size: 12px; color: var(--ink-3); letter-spacing: 0.3px;
  }
  .hero .trust strong { display: block; font-size: 18px; color: var(--ink); font-family: "Iowan Old Style", Georgia, serif; font-weight: 500; letter-spacing: -0.4px; }
  .hero .trust .div { width: 1px; height: 26px; background: var(--line-2); }

  /* Right side — a layered editorial collage, not a single hero card. */
  .hero .collage {
    position: relative; aspect-ratio: 5 / 6;
  }
  .hero .collage .tile {
    position: absolute; border-radius: 6px; overflow: hidden;
    background: #1B2A3D;
    box-shadow: 0 24px 50px -16px rgba(20,24,30,0.30), 0 4px 12px rgba(20,24,30,0.08);
  }
  .hero .collage .tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .hero .collage .tile.lead {
    top: 0; left: 8%; width: 64%; aspect-ratio: 4/5;
    z-index: 3;
  }
  .hero .collage .tile.lead .caption {
    position: absolute; left: 18px; right: 18px; bottom: 16px;
    color: #fff;
  }
  .hero .collage .tile.lead .caption .eyebrow {
    display: inline-block;
    font-size: 10.5px; letter-spacing: 1.6px; text-transform: uppercase;
    color: rgba(255,255,255,0.85); font-weight: 700;
    background: rgba(255,255,255,0.14); backdrop-filter: blur(8px);
    padding: 4px 10px; border-radius: 999px; margin-bottom: 8px;
    border: 1px solid rgba(255,255,255,0.18);
  }
  .hero .collage .tile.lead .caption h3 {
    font-size: 22px; line-height: 1.18; letter-spacing: -0.4px;
    color: #fff; font-weight: 500;
  }
  .hero .collage .tile.lead .caption .meta {
    margin-top: 8px; font-size: 12.5px; color: rgba(255,255,255,0.78);
    display: flex; align-items: center; gap: 8px;
  }
  .hero .collage .tile.lead .caption .meta .pulse {
    width: 6px; height: 6px; border-radius: 50%; background: #FF4F4F;
    box-shadow: 0 0 0 0 rgba(255,79,79,0.7);
    animation: pulse 1.6s infinite;
  }
  @keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255,79,79,0.7); }
    70% { box-shadow: 0 0 0 8px rgba(255,79,79,0); }
    100% { box-shadow: 0 0 0 0 rgba(255,79,79,0); }
  }
  .hero .collage .tile.book {
    bottom: 8%; left: 0; width: 38%; aspect-ratio: 3/4;
    z-index: 2;
  }
  .hero .collage .tile.podcast {
    bottom: 18%; right: 0; width: 36%; aspect-ratio: 1/1;
    z-index: 4;
  }
  .hero .collage .tile.podcast::after {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 60%, transparent 30%, rgba(0,0,0,0.45) 100%);
  }
  .hero .collage .tile.podcast .play {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
    width: 56px; height: 56px; border-radius: 50%;
    background: rgba(255,255,255,0.96); color: var(--ink);
    display: inline-flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.30);
    z-index: 2;
  }
  .hero .collage .badge {
    position: absolute; z-index: 5;
    background: #fff; border: 1px solid var(--line);
    border-radius: 14px; padding: 12px 14px;
    box-shadow: 0 12px 28px -12px rgba(20,24,30,0.25);
    display: flex; align-items: center; gap: 10px;
    font-size: 12.5px;
  }
  .hero .collage .badge .dot {
    width: 8px; height: 8px; border-radius: 50%; background: #41A769;
    box-shadow: 0 0 0 3px rgba(65,167,105,0.18);
  }
  .hero .collage .badge .num {
    font-family: "Iowan Old Style", Georgia, serif;
    font-size: 18px; font-weight: 500; color: var(--ink); letter-spacing: -0.3px;
  }
  .hero .collage .badge.fellowship {
    top: 2%; right: -6px;
  }
  .hero .collage .badge.lib {
    bottom: -10px; left: 24%;
  }

  /* ----- Section base ----- */
  section.block { padding: 84px 0; border-bottom: 1px solid var(--line); }
  section.block.tight { padding: 56px 0; }
  .section-head { margin-bottom: 36px; display: flex; align-items: end; justify-content: space-between; gap: 24px; }
  .section-head h2 { font-size: 38px; line-height: 1.1; letter-spacing: -0.6px; }
  .section-head .meta { color: var(--ink-3); font-size: 14px; }
  .section-head .all-link {
    font-size: 14px; font-weight: 600; color: var(--ink-2); flex-shrink: 0;
    border-bottom: 1px solid var(--line-2); padding-bottom: 2px;
  }
  .section-head .all-link:hover { color: var(--brand); border-color: var(--brand); }

  /* ----- About Kalameh — SEO-rich positioning band ----- */
  .mission { background: var(--paper-2); border-bottom: 1px solid var(--line); }
  .mission .inner {
    max-width: 760px; margin: 0 auto; padding: 56px 32px;
    display: block; text-align: center;
  }
  .mission h2 {
    font-family: "Iowan Old Style", Georgia, serif; font-weight: 500;
    font-size: 36px; line-height: 1.12; letter-spacing: -0.8px;
    color: var(--ink); margin: 14px auto 0; max-width: 660px;
    text-wrap: balance;
  }
  .mission h2 em { color: var(--brand); font-style: italic; }
  .mission p {
    font-size: 16px; line-height: 1.65; color: var(--ink-2);
    margin: 18px auto 24px; max-width: 600px;
  }
  .mission-nav {
    margin: 8px auto 28px;
    max-width: 640px;
  }
  .mission-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 22px;
  }
  .mission-nav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 84px;
    text-decoration: none;
    color: var(--ink);
    transition: transform 0.18s ease, color 0.15s ease;
  }
  .mission-nav__link:hover {
    transform: translateY(-2px);
    color: var(--brand);
  }
  .mission-nav__icon {
    display: block;
    width: 72px;
    height: 72px;
    border-radius: 18px;
    overflow: hidden;
    flex-shrink: 0;
  }
  .mission-nav__icon img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .mission-nav__label {
    font-size: 13.5px;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -0.1px;
    text-align: center;
  }
  .mission-cta {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--brand); font-weight: 700; font-size: 14.5px;
    letter-spacing: -0.1px; text-decoration: none;
    transition: gap 0.15s, color 0.15s;
  }
  .mission-cta:hover { gap: 12px; color: #2C6A7E; }

  /* ----- Resource categories — full-bleed photo cards ----- */
  .cats {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 14px;
  }
  .cat {
    position: relative; display: flex; flex-direction: column; justify-content: flex-end;
    aspect-ratio: 3 / 4;
    padding: 22px; border-radius: 8px;
    overflow: hidden;
    color: #fff;
    transition: transform .25s ease, box-shadow .25s ease;
    isolation: isolate;
  }
  .cat .photo {
    position: absolute; inset: 0; z-index: -2;
    background-size: cover; background-position: center;
    transition: transform .6s ease;
  }
  .cat::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background:
      linear-gradient(180deg, rgba(0,0,0,0.0) 30%, rgba(0,0,0,0.55) 75%, rgba(0,0,0,0.85) 100%);
  }
  .cat .tint {
    position: absolute; inset: 0; z-index: -1;
    mix-blend-mode: multiply; opacity: 0.55;
  }
  .cat:hover { transform: translateY(-3px); box-shadow: 0 22px 40px -22px rgba(20,24,30,0.40); }
  .cat:hover .photo { transform: scale(1.04); }
  .cat .top {
    position: absolute; top: 18px; left: 18px; right: 18px; z-index: 2;
    display: flex; align-items: center; justify-content: space-between;
  }
  .cat .glyph {
    width: 38px; height: 38px; border-radius: 10px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.16); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.22);
  }
  .cat .arrow {
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,0.14); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.20);
    display: inline-flex; align-items: center; justify-content: center;
    color: #fff;
    transition: background .2s, transform .2s;
  }
  .cat:hover .arrow { background: #fff; color: var(--ink); transform: translate(2px, -2px); }
  .cat h3 {
    font-size: 22px; letter-spacing: -0.3px; margin-bottom: 4px;
    color: #fff; font-weight: 500;
  }
  .cat .count {
    font-size: 11.5px; color: rgba(255,255,255,0.78);
    letter-spacing: 0.6px; text-transform: uppercase; font-weight: 600;
  }
  .cat .desc { display: none; }
  /* Team cards — no tint, no top icons (just photo + title) */
  .cats-teams .tint,
  .cats-teams .top,
  .cats-teams .count { display: none; }

  /* Team cards — horizontal carousel on tablet landscape and below */
  @media (max-width: 1024px) {
    .cats.cats-teams {
      display: flex;
      grid-template-columns: none;
      overflow-x: auto;
      gap: 12px;
      margin: 0;
      margin-inline-end: -24px;
      padding: 4px 0 14px 0;
      scroll-snap-type: x proximity;
      scrollbar-width: none;
      -ms-overflow-style: none;
      -webkit-overflow-scrolling: touch;
    }
    .cats.cats-teams::-webkit-scrollbar { display: none; }
    .cats.cats-teams .cat {
      flex: 0 0 190px;
      width: 190px;
      scroll-snap-align: start;
    }
  }
  @media (max-width: 540px) {
    .cats.cats-teams .cat { flex-basis: 160px; width: 160px; }
  }

  /* ----- Featured collections ----- */
  .featured-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  }
  .featured {
    background: #fff; border: 1px solid var(--line);
    border-radius: 4px; overflow: hidden;
    transition: border-color .2s, transform .2s, box-shadow .2s;
  }
  .featured:hover { border-color: var(--ink-3); transform: translateY(-2px); box-shadow: 0 12px 30px -16px rgba(20,24,30,0.18); }
  .featured .img {
    aspect-ratio: 16 / 10;
    background: var(--paper-2);
    background-size: cover; background-position: center;
  }
  .featured .body { padding: 22px 24px 24px; }
  .featured .eyebrow { display: block; margin-bottom: 6px; }
  .featured h3 { font-size: 22px; line-height: 1.2; margin-bottom: 8px; }
  .featured .desc { color: var(--ink-2); font-size: 14.5px; }

  /* ----- Latest articles ----- */
  .articles-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  }
  .article {
    display: flex; flex-direction: column;
  }
  .article .img {
    aspect-ratio: 4 / 3;
    background: var(--paper-2);
    background-size: cover; background-position: center;
    border-radius: 2px;
    margin-bottom: 14px;
  }
  .article .meta {
    font-size: 11.5px; letter-spacing: 1.4px; text-transform: uppercase;
    color: var(--ink-3); font-weight: 600; margin-bottom: 8px;
  }
  .article .meta .author { color: var(--brand); }
  .article h3 {
    font-size: 19px; line-height: 1.25; margin-bottom: 8px;
  }
  .article .excerpt {
    color: var(--ink-2); font-size: 14px; line-height: 1.5;
  }

  /* ----- Testimonies ----- */
  .testimony-band {
    background: linear-gradient(180deg, #1B2A3D, #0E1721);
    color: #fff;
    border-bottom: 1px solid var(--line);
  }
  .testimony-band .inner { padding: 96px 0; }
  .testimony-band .eyebrow { color: rgba(255,255,255,0.7); }
  .testimony-band h2 { color: #fff; font-size: 40px; }
  .testimony-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
    margin-top: 36px;
  }
  .testimony {
    padding: 32px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
  }
  .testimony .quote {
    font-family: "Iowan Old Style", Georgia, serif;
    font-size: 18px; line-height: 1.5; color: rgba(255,255,255,0.92);
    font-style: italic; margin-bottom: 18px;
  }
  .testimony .quote::before {
    content: "“"; font-size: 48px; line-height: 0; color: var(--brand);
    margin-right: 6px; vertical-align: -16px;
  }
  .testimony .by {
    font-size: 12px; color: rgba(255,255,255,0.6);
    letter-spacing: 1.2px; text-transform: uppercase; font-weight: 600;
  }
  .testimony .where { color: rgba(255,255,255,0.45); }

  /* ----- Free Gospel band ----- */
  .gospel-band {
    background: var(--paper-2);
    border-bottom: 1px solid var(--line);
  }
  .gospel-band .inner {
    display: grid; grid-template-columns: 1.05fr 1fr;
    gap: 64px; align-items: center;
    padding: 96px 0;
  }
  .gospel-band .inner.gospel-inner-centered {
    display: block;
    max-width: 720px; margin: 0 auto;
    text-align: center;
  }
  .gospel-band .inner.gospel-inner-centered p {
    margin-left: auto; margin-right: auto;
  }
  .btn-whatsapp {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 24px; border-radius: 999px;
    background: #25D366; color: #fff;
    font-family: inherit; font-weight: 700; font-size: 15px;
    letter-spacing: -0.1px; text-decoration: none;
    box-shadow: 0 8px 20px rgba(37,211,102,0.30);
    transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
  }
  .btn-whatsapp:hover { background: #1FB855; transform: translateY(-1px); box-shadow: 0 12px 24px rgba(37,211,102,0.40); }
  .gospel-band h2 { font-size: 42px; line-height: 1.05; letter-spacing: -0.6px; margin-bottom: 18px; }
  .gospel-band p { font-size: 16.5px; line-height: 1.6; color: var(--ink-2); margin-bottom: 28px; max-width: 520px; }
  .gospel-form {
    background: #fff; border: 1px solid var(--line);
    border-radius: 6px; padding: 32px;
    box-shadow: 0 12px 30px -16px rgba(20,24,30,0.18);
  }
  .gospel-form h3 { font-size: 22px; margin-bottom: 6px; }
  .gospel-form .sub { font-size: 14px; color: var(--ink-3); margin-bottom: 20px; }
  .field { margin-bottom: 14px; }
  .field label { display: block; font-size: 12px; font-weight: 600; color: var(--ink-2); margin-bottom: 6px; letter-spacing: 0.3px; }
  .field input, .field select, .field textarea {
    width: 100%; padding: 11px 14px; font-size: 14.5px; font-family: inherit;
    background: var(--paper); border: 1px solid var(--line-2);
    border-radius: 4px; color: var(--ink);
  }
  .field input:focus, .field select:focus { outline: none; border-color: var(--brand); }
  .gospel-form .submit { margin-top: 8px; width: 100%; justify-content: center; }
  .gospel-form .legal { margin-top: 14px; font-size: 12px; color: var(--ink-3); line-height: 1.45; text-align: center; }

  /* ----- App download band ----- */
  .app-band {
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 64px 0;
  }
  .appband-card {
    position: relative;
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px;
    align-items: center;
    padding: 44px 56px;
    background: linear-gradient(135deg, #0E1721 0%, #1B2A3D 65%, #2C6A7E 100%);
    color: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 60px -30px rgba(44,106,126,0.45);
  }
  .appband-glow {
    position: absolute; inset: 0; pointer-events: none;
    background:
      radial-gradient(420px 280px at 0% 100%, rgba(75,187,221,0.30), transparent 60%),
      radial-gradient(420px 280px at 100% 0%, rgba(75,187,221,0.20), transparent 60%);
  }
  .appband-copy { position: relative; z-index: 1; }
  .appband-copy .eyebrow { color: #4BBBDD; }
  .appband-card h2 {
    font-family: "Iowan Old Style", Georgia, serif; font-weight: 500;
    font-size: 36px; line-height: 1.08; letter-spacing: -0.8px;
    color: #fff; margin: 10px 0 12px; text-wrap: balance;
  }
  .appband-card h2 em { color: #4BBBDD; font-style: normal; }
  .appband-card p {
    font-size: 15px; line-height: 1.6; color: rgba(255,255,255,0.80);
    margin: 0 0 22px; max-width: 480px;
  }
  .appband-cta {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 13px 22px; border-radius: 999px; border: none;
    background: #fff; color: #0E1721;
    font-family: inherit; font-weight: 700; font-size: 14.5px;
    letter-spacing: -0.1px; cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 8px 18px rgba(0,0,0,0.25);
  }
  .appband-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,0,0,0.30); }
  .appband-stores { display: inline-flex; align-items: center; gap: 5px; }
  .appband-stores svg { display: block; }
  .appband-meta {
    display: flex; align-items: center; gap: 12px;
    margin-top: 16px; font-size: 12.5px; color: rgba(255,255,255,0.75);
  }
  .appband-meta strong { color: #fff; font-weight: 700; }
  .appband-dot { width: 3px; height: 3px; border-radius: 999px; background: rgba(255,255,255,0.35); }

  /* Mini phones */
  .appband-art {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: center;
    min-height: 240px;
  }
  .appband-phone {
    position: absolute;
    width: 112px; aspect-ratio: 9 / 19.5;
    background: #0A0A0A;
    border-radius: 18px;
    padding: 6px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.45), inset 0 0 0 1px rgba(255,255,255,0.08);
  }
  .appband-screen {
    width: 100%; height: 100%;
    border-radius: 12px; overflow: hidden;
    background: #FBFAF7;
    position: relative;
  }
  .appband-phone-a { left: 0; top: 8px; transform: rotate(-8deg); }
  .appband-phone-b { left: 50%; top: 0; transform: translateX(-50%); z-index: 2; }
  .appband-phone-c { right: 0; top: 8px; transform: rotate(8deg); }
  /* Real app screenshots (same assets as /about-app hero). */
  .appband-phone--shot { padding: 5px; }
  .appband-screen--shot { background: #0A0A0A; }
  .appband-shot {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
  }
  .store-btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 12px 22px; border-radius: 10px;
    background: #fff; color: var(--ink); border: none;
    font-family: inherit;
  }
  .store-btn:hover { background: #f0eada; }
  .store-btn .small { font-size: 11px; line-height: 1.1; opacity: 0.7; letter-spacing: 0.3px; text-transform: uppercase; }
  .store-btn .big { font-size: 16.5px; font-weight: 600; line-height: 1.1; margin-top: 2px; }
  .store-btn svg { width: 24px; height: 28px; flex-shrink: 0; }
  .qr {
    margin-top: 24px; display: inline-flex; align-items: center; gap: 14px;
    padding: 12px 18px 12px 12px; border-radius: 10px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.10);
    font-size: 13px; color: rgba(255,255,255,0.78); max-width: max-content;
  }
  .qr .qrbox {
    width: 64px; height: 64px; border-radius: 6px;
    background: #fff;
    background-image:
      linear-gradient(45deg, var(--ink) 25%, transparent 25%),
      linear-gradient(-45deg, var(--ink) 25%, transparent 25%),
      linear-gradient(45deg, transparent 75%, var(--ink) 75%),
      linear-gradient(-45deg, transparent 75%, var(--ink) 75%);
    background-size: 8px 8px;
    background-position: 0 0, 0 4px, 4px -4px, -4px 0;
  }
  .phone-mockup {
    width: 100%; max-width: 440px; aspect-ratio: 9 / 18;
    margin: 0 auto;
    background: #0F1419;
    border-radius: 36px;
    border: 8px solid #1F252B;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.05);
    overflow: hidden;
    position: relative;
  }
  .phone-mockup .notch {
    position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
    width: 90px; height: 24px; background: #000;
    border-radius: 999px; z-index: 2;
  }
  .phone-mockup img {
    width: 100%; height: 100%; object-fit: cover;
  }

  /* ----- Footer ----- */
  footer.site { background: #0E0E10; color: rgba(255,255,255,0.8); padding: 56px 0 28px; }
  footer.site .columns { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
  footer.site h4 { font-family: inherit; font-size: 14px; font-weight: 600; color: #fff; margin: 0 0 16px; }
  footer.site a { display: block; font-size: 13px; color: rgba(255,255,255,0.65); padding: 4px 0; }
  footer.site a:hover { color: #fff; }
  footer.site .legal { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08); font-size: 12px; color: rgba(255,255,255,0.5); }

  /* ----- Gate modal ----- */
  .gate-overlay {
    position: fixed; inset: 0; z-index: 100;
    background: rgba(20,18,16,0.55);
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    display: none; align-items: center; justify-content: center;
    padding: 24px;
  }
  .gate-overlay.open { display: flex; }
  .gate-modal {
    background: #fff;
    border-radius: 8px;
    width: 100%; max-width: 480px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    animation: modalIn .25s cubic-bezier(0.2, 0.8, 0.2, 1);
  }
  @keyframes modalIn { from { transform: translateY(12px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
  .gate-modal .head {
    padding: 28px 28px 4px;
    display: flex; align-items: start; gap: 16px;
  }
  .gate-modal .icon-wrap {
    width: 52px; height: 52px; border-radius: 14px;
    background: transparent;
    display: inline-flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .gate-modal .icon-wrap img { width: 100%; height: 100%; object-fit: contain; display: block; }
  .gate-modal .head h3 {
    font-size: 22px; line-height: 1.2; letter-spacing: -0.2px;
    margin-bottom: 4px;
  }
  .gate-modal .head .sub {
    font-size: 14px; color: var(--ink-3);
  }
  .gate-modal .body { padding: 12px 28px 0; }
  .gate-modal .feature {
    font-size: 14.5px; color: var(--ink-2); line-height: 1.5;
    margin-bottom: 16px;
  }
  .gate-modal .feature strong { color: var(--ink); }
  .gate-modal .feature-list {
    list-style: none; padding: 0; margin: 0 0 20px;
    display: flex; flex-direction: column; gap: 10px;
  }
  .gate-modal .feature-list li {
    display: flex; gap: 10px; align-items: start;
    font-size: 13.5px; color: var(--ink-2);
  }
  .gate-modal .feature-list svg { flex-shrink: 0; margin-top: 1px; color: var(--open); }
  .gate-modal .ctas { padding: 8px 28px 28px; display: flex; flex-direction: column; gap: 10px; }
  .gate-modal .ctas .stores { display: flex; gap: 10px; }
  .gate-modal .stores .store-btn { flex: 1; background: var(--ink); color: #fff; padding: 12px 14px; border-radius: 8px; }
  .gate-modal .stores .store-btn:hover { background: #2D2925; }
  .gate-modal .stores .store-btn .small { color: rgba(255,255,255,0.7); }
  .gate-modal .later {
    background: transparent; border: none; padding: 8px;
    font-size: 13px; color: var(--ink-3); align-self: center;
  }
  .gate-modal .later:hover { color: var(--ink); }
  .gate-modal .close-x {
    position: absolute; top: 14px; right: 14px;
    width: 32px; height: 32px; border-radius: 999px;
    background: var(--paper-2); border: none;
    display: inline-flex; align-items: center; justify-content: center;
    color: var(--ink-2);
  }
  .gate-modal { position: relative; }
  .gate-modal .close-x:hover { background: var(--line); color: var(--ink); }
  [dir="rtl"] .gate-modal .close-x { right: auto; left: 14px; }

  /* ----- Mobile menu ----- */
  .mobile-menu {
    position: fixed; inset: 0; z-index: 90;
    background: rgba(20,18,16,0.55);
    display: none;
  }
  .mobile-menu.open { display: block; }
  .mobile-menu .panel {
    position: absolute; top: 0; right: 0; bottom: 0;
    width: 320px; max-width: 84vw;
    background: var(--paper);
    padding: 28px 28px 32px;
    display: flex; flex-direction: column;
    overflow-y: auto;
  }
  .mobile-menu .panel .top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
  .mobile-menu .panel nav { display: flex; flex-direction: column; gap: 4px; }
  .mobile-menu .panel nav a {
    padding: 14px 0; font-size: 18px;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
  }
  .mobile-menu .panel .actions { margin-top: auto; padding-top: 24px; display: flex; flex-direction: column; gap: 12px; }

  /* ----- RESPONSIVE ----- */
  @media (max-width: 1024px) {
    .wrap { padding: 0 24px; }
    .hero h1 { font-size: 52px; }
    .section-head h2 { font-size: 32px; }
    .articles-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 28px; }
    .cats { grid-template-columns: repeat(4, 1fr); }
    .hero .grid { grid-template-columns: 1fr; gap: 48px; }
    .hero .collage { max-width: 540px; margin-inline: auto; }
    .featured-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-grid > :last-child { grid-column: span 2; }
    .testimony-grid { grid-template-columns: 1fr 1fr; }
    .testimony-grid > :last-child { grid-column: span 2; }
    footer.site .columns { grid-template-columns: 1fr 1fr 1fr; gap: 36px; }
  }
  @media (max-width: 760px) {
    .site-header .row { height: 60px; gap: 16px; }
    .site-header nav.primary { display: none; }
    .header-actions .btn-app { display: none; }
    .header-actions .lang-toggle { display: none; }
    .btn-burger {
      display: inline-flex; align-items: center; justify-content: center;
      width: 38px; height: 38px; border-radius: 999px;
      border: none; background: transparent; color: var(--ink);
    }
    section.block { padding: 56px 0; }
    .hero { padding: 36px 0 48px; }
    .hero .grid { grid-template-columns: 1fr; gap: 36px; }
    .hero h1 { font-size: 40px; letter-spacing: -1px; margin-bottom: 16px; }
    .hero .lede { font-size: 16.5px; }
    .hero .visual { aspect-ratio: 4 / 3; max-width: 420px; }
    .section-head { flex-direction: column; align-items: start; gap: 8px; margin-bottom: 24px; }
    .section-head h2 { font-size: 28px; }
    .cats { grid-template-columns: 1fr; gap: 12px; }
    .cat { padding: 22px; }
    .featured-grid { grid-template-columns: 1fr; gap: 18px; }
    .featured-grid > :last-child { grid-column: auto; }
    .articles-grid { grid-template-columns: 1fr; gap: 28px; }
    .testimony-grid { grid-template-columns: 1fr; gap: 14px; }
    .testimony-grid > :last-child { grid-column: auto; }
    .testimony-band .inner { padding: 56px 0; }
    .testimony-band h2 { font-size: 28px; }
    .gospel-band .inner { grid-template-columns: 1fr; gap: 28px; padding: 56px 0; }
    .gospel-band h2 { font-size: 30px; }
    .gospel-form { padding: 22px; }
    .app-band { padding: 40px 0; }
    .appband-card { grid-template-columns: 1fr; gap: 28px; padding: 36px 28px; }
    .appband-card h2 { font-size: 28px; }
    .appband-art { min-height: 200px; }
    .appband-phone { width: 92px; }
    .mission .inner { padding: 40px 24px; }
    .mission h2 { font-size: 26px; }
    .mission-nav { margin-bottom: 22px; }
    .mission-nav__list { gap: 14px 12px; }
    .mission-nav__link { width: 72px; gap: 8px; }
    .mission-nav__icon { width: 60px; height: 60px; border-radius: 15px; }
    .mission-nav__label { font-size: 12.5px; }
    footer.site { padding: 48px 0 24px; }
    footer.site .columns { grid-template-columns: 1fr 1fr; gap: 28px; }
    footer.site .legal { flex-direction: column; gap: 14px; align-items: start; }
    .gate-modal .head { padding: 22px 22px 4px; }
    .gate-modal .body, .gate-modal .ctas { padding-left: 22px; padding-right: 22px; }
    .gate-modal .ctas .stores { flex-direction: column; }
  }

header.site nav a { color: var(--ink); opacity: 0.78; transition: color 0.15s, opacity 0.15s; }
header.site nav a:hover { opacity: 1; }
header.site nav a:has(.glyph-fellowship):hover { color: #A862C9; }
header.site nav a:has(.glyph-worship):hover { color: #A53C7E; }
header.site nav a:has(.glyph-library):hover { color: #E89A3C; }
header.site nav a:has(.glyph-audio):hover { color: #4A95AC; }
header.site nav a:has(.glyph-video):hover { color: #EB584D; }
header.site nav a:has(.glyph-bible):hover { color: #41A769; }
header.site nav a:has(.glyph-shop):hover { color: #0A0A0A; }
/* Active page — stays in its space's brand color */
header.site nav a.on { opacity: 1; font-weight: 700; }
header.site nav a.on:has(.glyph-fellowship) { color: #A862C9; }
header.site nav a.on:has(.glyph-worship) { color: #A53C7E; }
header.site nav a.on:has(.glyph-library) { color: #B0701F; }
header.site nav a.on:has(.glyph-audio) { color: #2C6A7E; }
header.site nav a.on:has(.glyph-video) { color: #D7483A; }
header.site nav a.on:has(.glyph-bible) { color: #41A769; }
header.site nav a.on:has(.glyph-shop) { color: #0A0A0A; }
header.site nav a.on::after {
  content: ''; display: block; height: 2px; margin-top: 6px; border-radius: 2px;
  background: currentColor;
}

/* Nav dropdown */
.nav-drop { position: relative; display: inline-flex; align-items: stretch; }
.drop-caret { opacity: 0.6; transition: transform 0.18s; }
.nav-drop:hover .drop-caret { transform: rotate(180deg); opacity: 1; }
.nav-drop-menu {
  position: absolute; top: 100%; left: 50%; transform: translate(-50%, 8px);
  min-width: 320px; padding: 8px;
  background: #fff; border: 1px solid #E5E5EA; border-radius: 16px;
  box-shadow: 0 16px 48px rgba(20,24,30,0.16), 0 4px 12px rgba(20,24,30,0.08);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
}
.nav-drop:hover .nav-drop-menu,
.nav-drop:focus-within .nav-drop-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.nav-drop::before { content: ''; position: absolute; top: 100%; left: -20px; right: -20px; height: 16px; }
.nav-drop-item {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: 10px;
  opacity: 1 !important; color: #1C1C1E !important;
  text-align: start; font-weight: 500;
}
.nav-drop-item:hover { background: #F5F4F1; }
/* Per-section dropdown highlight/active colors */
.nav-drop-lib .nav-drop-item:hover { background: #FBF0DD; }
.nav-drop-lib .nav-drop-item:hover .nd-t { color: #E89A3C; }
.nav-drop-lib .nav-drop-item.on { background: #FBF0DD; }
.nav-drop-lib .nav-drop-item.on .nd-t { color: #E89A3C; }

.nav-drop-aud .nav-drop-item:hover { background: #DCEAEE; }
.nav-drop-aud .nav-drop-item:hover .nd-t { color: #4A95AC; }
.nav-drop-aud .nav-drop-item.on { background: #DCEAEE; }
.nav-drop-aud .nav-drop-item.on .nd-t { color: #4A95AC; }

.nav-drop-fel .nav-drop-item:hover { background: #F2EBF7; }
.nav-drop-fel .nav-drop-item:hover .nd-t { color: #A862C9; }
.nav-drop-fel .nav-drop-item.on { background: #F2EBF7; }
.nav-drop-fel .nav-drop-item.on .nd-t { color: #A862C9; }


/* "Other" nav-drop — slate accent */
header.site nav a.on .glyph-other { color: #4BBBDD; opacity: 1; }
header.site nav > a:has(.glyph-fellowship):hover, header.site nav > .nav-drop:has(.glyph-fellowship):hover > a { color: #A862C9; }
header.site nav > a:has(.glyph-fellowship):hover .nav-glyph, header.site nav > .nav-drop:has(.glyph-fellowship):hover > a .nav-glyph { color: #A862C9; opacity: 1; }
header.site nav > a:has(.glyph-worship):hover, header.site nav > .nav-drop:has(.glyph-worship):hover > a { color: #A53C7E; }
header.site nav > a:has(.glyph-worship):hover .nav-glyph, header.site nav > .nav-drop:has(.glyph-worship):hover > a .nav-glyph { color: #A53C7E; opacity: 1; }
header.site nav > a:has(.glyph-library):hover, header.site nav > .nav-drop:has(.glyph-library):hover > a { color: #E89A3C; }
header.site nav > a:has(.glyph-library):hover .nav-glyph, header.site nav > .nav-drop:has(.glyph-library):hover > a .nav-glyph { color: #E89A3C; opacity: 1; }
header.site nav > a:has(.glyph-audio):hover, header.site nav > .nav-drop:has(.glyph-audio):hover > a { color: #4A95AC; }
header.site nav > a:has(.glyph-audio):hover .nav-glyph, header.site nav > .nav-drop:has(.glyph-audio):hover > a .nav-glyph { color: #4A95AC; opacity: 1; }
header.site nav > a:has(.glyph-video):hover, header.site nav > .nav-drop:has(.glyph-video):hover > a { color: #EB584D; }
header.site nav > a:has(.glyph-video):hover .nav-glyph, header.site nav > .nav-drop:has(.glyph-video):hover > a .nav-glyph { color: #EB584D; opacity: 1; }
header.site nav > a:has(.glyph-bible):hover, header.site nav > .nav-drop:has(.glyph-bible):hover > a { color: #41A769; }
header.site nav > a:has(.glyph-bible):hover .nav-glyph, header.site nav > .nav-drop:has(.glyph-bible):hover > a .nav-glyph { color: #41A769; opacity: 1; }
header.site nav > a:has(.glyph-shop):hover, header.site nav > .nav-drop:has(.glyph-shop):hover > a { color: #0A0A0A; }
header.site nav > a:has(.glyph-shop):hover .nav-glyph, header.site nav > .nav-drop:has(.glyph-shop):hover > a .nav-glyph { color: #0A0A0A; opacity: 1; }
.nav-drop-other .nav-drop-item:hover { background: #DCF3F8; }
.nav-drop-other .nav-drop-item:hover .nd-t { color: #4BBBDD; }
.nav-drop-other .nav-drop-item.on { background: #DCF3F8; }
.nav-drop-other .nav-drop-item.on .nd-t { color: #4BBBDD; }

/* Worship nav-drop colors */
.nav-drop-wor .nav-drop-item:hover { background: #F8E5F0; }
.nav-drop-wor .nav-drop-item:hover .nd-t { color: #A53C7E; }
.nav-drop-wor .nav-drop-item.on { background: #F8E5F0; }
.nav-drop-wor .nav-drop-item.on .nd-t { color: #A53C7E; }

.nav-drop-ico {
  width: 36px; height: 36px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #FBF0DD; color: #E89A3C; flex-shrink: 0;
}
.nav-drop-text { display: flex; flex-direction: column; gap: 2px; }
.nd-t { font-family: inherit; font-size: 14px; font-weight: 600; color: #1C1C1E; }
.nd-s { font-size: 11.5px; color: #6E6E73; }

/* ========== ICON-STYLE HEADER (matches site-wide nav on Books/Bible/etc) ========== */
header.site {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92); backdrop-filter: saturate(180%) blur(20px); -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--line);
}
header.site .row { display: flex; align-items: center; gap: 28px; height: 64px; }
header.site .logo { flex-shrink: 0; display: inline-flex; align-items: center; }
header.site .logo img { height: 28px; display: block; }
header.site nav { display: flex; gap: 14px; flex: 1; }
header.site nav > a, header.site nav > .nav-drop > a {
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; padding: 0 6px; height: 64px; min-width: 64px;
  font-size: 11.5px; font-weight: 500; line-height: 1; color: #1C1C1E; opacity: 0.88;
  white-space: nowrap; transition: color 0.15s, opacity 0.15s;
  border: none; background: transparent; text-decoration: none;
}
header.site nav > a:hover, header.site nav > .nav-drop:hover > a { opacity: 1; }
.nav-glyph { width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; flex: 0 0 24px; transition: transform 0.18s; color: #1a1a1a; opacity: 0.78; }
.nav-glyph > svg, .nav-glyph > span { width: 24px; height: 24px; display: block; }
/* Bible icon flipped horizontally per design feedback — spine sits on the right. Applied wherever the .glyph-bible nav span is used. */
.glyph-bible svg { transform: scaleX(-1); transform-origin: center; }
header.site nav > a:hover .nav-glyph, header.site nav > .nav-drop:hover > a .nav-glyph { opacity: 1; transform: translateY(-1px); }
header.site nav .drop-caret { display: inline-block; vertical-align: middle; margin-inline-start: 3px; opacity: 0.6; transition: transform 0.18s; }
.nav-drop:hover .drop-caret { transform: rotate(180deg); opacity: 1; }
/* Per-nav hover colors override generic */
header.site nav > a:has(.glyph-fellowship):hover, header.site nav > .nav-drop:has(.glyph-fellowship):hover > a { color: #A862C9; }
header.site nav > a:has(.glyph-fellowship):hover .nav-glyph, header.site nav > .nav-drop:has(.glyph-fellowship):hover > a .nav-glyph { color: #A862C9; opacity: 1; }
header.site nav > a:has(.glyph-worship):hover, header.site nav > .nav-drop:has(.glyph-worship):hover > a { color: #A53C7E; }
header.site nav > a:has(.glyph-worship):hover .nav-glyph, header.site nav > .nav-drop:has(.glyph-worship):hover > a .nav-glyph { color: #A53C7E; opacity: 1; }
header.site nav > a:has(.glyph-library):hover, header.site nav > .nav-drop:has(.glyph-library):hover > a { color: #E89A3C; }
header.site nav > a:has(.glyph-library):hover .nav-glyph, header.site nav > .nav-drop:has(.glyph-library):hover > a .nav-glyph { color: #E89A3C; opacity: 1; }
header.site nav > a:has(.glyph-audio):hover, header.site nav > .nav-drop:has(.glyph-audio):hover > a { color: #4A95AC; }
header.site nav > a:has(.glyph-audio):hover .nav-glyph, header.site nav > .nav-drop:has(.glyph-audio):hover > a .nav-glyph { color: #4A95AC; opacity: 1; }
header.site nav > a:has(.glyph-video):hover, header.site nav > .nav-drop:has(.glyph-video):hover > a { color: #EB584D; }
header.site nav > a:has(.glyph-video):hover .nav-glyph, header.site nav > .nav-drop:has(.glyph-video):hover > a .nav-glyph { color: #EB584D; opacity: 1; }
header.site nav > a:has(.glyph-bible):hover, header.site nav > .nav-drop:has(.glyph-bible):hover > a { color: #41A769; }
header.site nav > a:has(.glyph-bible):hover .nav-glyph, header.site nav > .nav-drop:has(.glyph-bible):hover > a .nav-glyph { color: #41A769; opacity: 1; }
header.site nav > a:has(.glyph-shop):hover, header.site nav > .nav-drop:has(.glyph-shop):hover > a { color: #0A0A0A; }
header.site nav > a:has(.glyph-shop):hover .nav-glyph, header.site nav > .nav-drop:has(.glyph-shop):hover > a .nav-glyph { color: #0A0A0A; opacity: 1; }
header.site nav .nav-lbl { display: inline-flex; align-items: center; gap: 2px; }

header.site .right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
header.site .lang { font-size: 12px; color: var(--ink-3); padding: 6px 10px; border: 1px solid var(--line); border-radius: 999px; cursor: pointer; background: transparent; font-family: inherit; }
header.site .lang:hover { color: var(--brand); border-color: var(--brand); }
header.site .cta {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; padding: 10px 18px; border-radius: 999px;
  background: #0A0A0A; color: #fff; cursor: pointer; border: none; font-family: inherit;
  letter-spacing: -0.1px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.18), 0 4px 12px rgba(0,0,0,0.10);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
header.site .cta:hover { transform: translateY(-1px); background: #1a1a1a; }
header.site .cta .stores { display: inline-flex; align-items: center; gap: 6px; }
header.site .cta .stores svg { display: block; }
@media (max-width: 900px) {
  header.site nav { display: none; }
}

/* ----- RTL: directional chevrons & horizontal rails (site-wide) -----
   Forward/CTA chevrons and shelf arrows are authored for LTR. In Farsi they
   must mirror. Do NOT flip down-carets (.drop-caret), FAQ expand chevs, or
   store/brand mark icons. */
[dir="rtl"] .row-arrow.prev,
[dir="rtl"] .rw-arrow.prev,
[dir="rtl"] .kids-rail-arrow.prev,
[dir="rtl"] .cat-sec .row-arrow.prev {
  left: auto;
  right: 0;
}
[dir="rtl"] .row-arrow.next,
[dir="rtl"] .rw-arrow.next,
[dir="rtl"] .kids-rail-arrow.next,
[dir="rtl"] .cat-sec .row-arrow.next {
  right: auto;
  left: 0;
}
[dir="rtl"] .row-arrow svg,
[dir="rtl"] .rw-arrow svg,
[dir="rtl"] .kids-rail-arrow svg,
[dir="rtl"] .cat-sec .row-arrow svg {
  transform: scaleX(-1);
}

/* Forward CTAs / inline “go” links (right chevron / long arrow in LTR). */
[dir="rtl"] .mission-cta > svg,
[dir="rtl"] .wf-tw-link > svg,
[dir="rtl"] .wf-btn-primary > svg,
[dir="rtl"] .bible-hero .btn-primary > svg,
[dir="rtl"] .show-card .all-eps > svg,
[dir="rtl"] .rg-this-more > svg,
[dir="rtl"] .portal-cta > svg,
[dir="rtl"] .rsx-cta > svg,
[dir="rtl"] .fel-rsx-cta a > svg,
[dir="rtl"] .week-chev,
[dir="rtl"] .fwk-continue-btn .arrow svg,
[dir="rtl"] .cat .arrow,
[dir="rtl"] .reach-channel .arrow,
[dir="rtl"] .other-team-card > svg,
[dir="rtl"] .contact-arrow,
[dir="rtl"] .kal-dir-arrow,
[dir="rtl"] .jrny-link > svg,
[dir="rtl"] .jrny-more > svg,
[dir="rtl"] .jrny-faq-more a > svg,
[dir="rtl"] .ntw-rail a > svg,
[dir="rtl"] .fwk-vm-btn.primary > svg,
[dir="rtl"] .hero-slide-content .btn-primary > svg,
[dir="rtl"] .ntw-cta-btn > svg {
  transform: scaleX(-1);
}


/* Bible chapter prev/next — mirror with reading direction. */
[dir="rtl"] .section--bible .reader-section .reader-head .ref-group .nav-btn svg {
  transform: scaleX(-1);
}

/* “Back” crumbs: keep the authored ← chevron in RTL (do NOT scaleX).
   In RTL flex the icon sits on the trailing edge and must still point
   “back” (←), not outward (→). Covers podcast/show/album/resource/etc. */
[dir=”rtl”] .crumb a > svg,
[dir=”rtl”] .res-crumb a > svg,
[dir=”rtl”] .sd-crumb a > svg,
[dir=”rtl”] .al-crumb a > svg,
[dir=”rtl”] .crs-crumb svg,
[dir=”rtl”] .sg-crumb svg,
[dir=”rtl”] .bk-crumb svg,
[dir=”rtl”] .ep-crumb svg,
[dir=”rtl”] .section--audio .crumb a > svg,
[dir=”rtl”] .section--fellowship .res-crumb a svg,
[dir=”rtl”] .fwk .crumb a svg,
[dir=”rtl”] .r-bar .back svg,
[dir=”rtl”] .pr-bar .back svg {
  transform: scaleX(-1);
}
