/* ОБЩИ СТИЛОВЕ — ползват се и от index.html, и от propovedi.html.
   Промяна тук се отразява на двете страници. */
/* ─── SPLASH SCREEN ─── */
    #splash {
      position: fixed; inset: 0; z-index: 9999;
      background: #000;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center; gap: 24px;
      transition: opacity 1s ease, visibility 1s ease;
    }
    #splash.hide { opacity: 0; visibility: hidden; pointer-events: none; }

    /* Централна светлина около логото */
    .splash-core {
      position: absolute;
      width: 500px; height: 500px;
      top: calc(50% - 55px); left: 50%;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      background: radial-gradient(circle,
        rgba(224,140,107,.38)  0%,
        rgba(201,100,66,.16)  28%,
        rgba(148,72,46,.05)  52%,
        transparent           68%
      );
      opacity: 0;
      animation: core-glow 2.2s cubic-bezier(0.15, 0, 0.3, 1) 0.8s forwards;
    }
    @keyframes core-glow {
      0%   { opacity: 0; transform: translate(-50%,-50%) scale(0.2); }
      100% { opacity: 1; transform: translate(-50%,-50%) scale(1); }
    }

    /* Мека светлина която огрява фона след централната */
    .splash-dawn {
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse 60% 50% at 50% 42%,
        rgba(176,86,56,.14)  0%,
        rgba(120,58,38,.06)  45%,
        transparent           70%
      );
      opacity: 0;
      animation: dawn-glow 2.5s ease 1.4s forwards;
    }
    @keyframes dawn-glow {
      0%   { opacity: 0; }
      100% { opacity: 1; }
    }

    .splash-icon {
      position: relative;
      display: flex; align-items: center; justify-content: center;
      width: 130px; height: 130px;
      z-index: 2;
    }

    #splash-logo {
      width: 120px; height: 120px;
      object-fit: contain;
      border-radius: 32px;
      position: relative; z-index: 1;
      opacity: 0;
      animation: logo-appear .9s cubic-bezier(0.2, 0, 0.3, 1) 0.2s forwards;
    }
    @keyframes logo-appear {
      from { opacity: 0; transform: scale(.88); }
      to   { opacity: 1; transform: scale(1); }
    }

    #splash-name {
      font-size: 18px; font-weight: 800; letter-spacing: -.02em;
      color: #f5f2ec; position: relative; z-index: 2;
      animation: fadeUp .9s ease 2.2s both;
    }
    #splash-sub {
      font-size: 12px; font-weight: 600; color: #8a8780;
      letter-spacing: .1em; text-transform: uppercase;
      position: relative; z-index: 2;
      animation: fadeUp .9s ease 2.5s both;
    }
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(12px); }
      to   { opacity: 1; transform: none; }
    }

    /* ─── RESET ─── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

    /* ─── TOKENS ─── */
    :root {
      --bg:    #000000;
      --bg2:   #0a0a09;
      --bg3:   #141412;
      --surf:  rgba(255,255,255,0.045);
      --surf2: rgba(255,255,255,0.08);
      --surf3: rgba(255,255,255,0.12);
      --bdr:   rgba(255,255,255,0.07);
      --bdr2:  rgba(255,255,255,0.13);
      --bdr3:  rgba(255,255,255,0.2);
      --txt:   #f5f2ec;
      --muted: #9d9a93;
      --dim:   #83807a;
      --gold:  #c96442;
      --gold2: #e08c6b;
      --blue:  #9d9a93;
      --blue2: #c0bdb6;
      --r:     18px;
      --r-sm:  11px;
    }

    body {
      font-family: 'Inter', system-ui, sans-serif;
      background: var(--bg);
      color: var(--txt);
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; }

    /* ─── LAYOUT ─── */
    .wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

    /* ─── SCROLL ANIMATIONS ─── */
    .fi {
      opacity: 0; transform: translateY(26px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .fi.on { opacity: 1; transform: none; }

    /* ─── AMBIENT MESH ─── */
    #mesh {
      position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden;
    }
    #mesh::before {
      content: '';
      position: absolute; top: -30%; left: -20%; width: 70vw; height: 70vw;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(157,154,147,.09) 0%, transparent 65%);
      animation: m1 22s ease-in-out infinite alternate;
    }
    #mesh::after {
      content: '';
      position: absolute; bottom: -20%; right: -15%; width: 60vw; height: 60vw;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(201,100,66,.08) 0%, transparent 65%);
      animation: m2 28s ease-in-out infinite alternate;
    }
    @keyframes m1 { to { transform: translate(8%, 6%); } }
    @keyframes m2 { to { transform: translate(-7%, -5%); } }

    /* ─── TYPOGRAPHY UTILS ─── */
    .tag {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 11px; font-weight: 700; letter-spacing: .13em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
    }
    .tag::before {
      content: ''; width: 14px; height: 2px;
      background: var(--gold); border-radius: 2px;
    }
    .h2 {
      font-size: clamp(28px, 5vw, 52px);
      font-weight: 800; letter-spacing: -.012em; word-spacing: .08em; line-height: 1.12; margin-bottom: 14px;
    }
    .sub { color: var(--muted); font-size: 16px; line-height: 1.75; max-width: 560px; }

    /* ─── BUTTONS ─── */
    .btn-g {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--gold); color: #180b06;
      font-weight: 800; font-size: 14px;
      padding: 13px 22px; border-radius: 13px;
      transition: transform .22s, box-shadow .22s;
    }
    .btn-g:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(201,100,66,.3); }

    .btn-o {
      display: inline-flex; align-items: center; gap: 8px;
      border: 1px solid var(--bdr2); background: var(--surf);
      color: var(--txt); font-weight: 700; font-size: 14px;
      padding: 12px 21px; border-radius: 13px; transition: .22s;
    }
    .btn-o:hover { background: var(--surf2); transform: translateY(-3px); }

    /* ─── NAV ─── */
    #nav {
      position: fixed; top: 0; inset-inline: 0; z-index: 900;
      background: rgba(0,0,0,.82);
      backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
      border-bottom: 1px solid var(--bdr);
      transition: background .3s;
    }
    .nav-in {
      display: flex; align-items: center; justify-content: space-between;
      height: 62px; padding: 0 24px; max-width: 1160px; margin: 0 auto;
    }
    .nav-brand {
      display: flex; align-items: center; gap: 11px;
      font-weight: 800; font-size: 14px; letter-spacing: -.02em;
    }
    .nav-brand img {
      width: 36px; height: 36px; border-radius: 8px;
      background: #fff; padding: 3px; object-fit: contain;
    }
    .nav-links {
      display: flex; align-items: center; gap: 26px;
      list-style: none; font-size: 13.5px; font-weight: 500; color: var(--muted);
    }
    .nav-links a { transition: color .15s; }
    .nav-links a:hover { color: var(--txt); }
    .nav-pill {
      background: var(--gold); color: #180b06;
      font-weight: 800; font-size: 13px;
      padding: 9px 17px; border-radius: 11px;
      transition: opacity .18s, transform .18s;
    }
    .nav-pill:hover { opacity: .88; transform: translateY(-1px); }

    .hbg {
      display: none; flex-direction: column; gap: 5px; cursor: pointer;
      padding: 9px; background: var(--surf); border: 1px solid var(--bdr); border-radius: 10px;
    }
    .hbg b { display: block; width: 18px; height: 2px; background: var(--txt); border-radius: 2px; transition: .28s; }
    .hbg.x b:nth-child(1) { transform: rotate(45deg) translate(4px,5px); }
    .hbg.x b:nth-child(2) { opacity: 0; }
    .hbg.x b:nth-child(3) { transform: rotate(-45deg) translate(4px,-5px); }

    #drawer {
      display: none; position: fixed;
      inset: 62px 0 0; z-index: 899;
      background: rgba(0,0,0,.97); backdrop-filter: blur(24px);
      padding: 28px 20px; flex-direction: column; gap: 4px;
      border-top: 1px solid var(--bdr);
    }
    #drawer.open { display: flex; }
    #drawer a { padding: 15px 18px; border-radius: 13px; font-size: 17px; font-weight: 600; color: var(--muted); transition: .18s; }
    #drawer a:hover { background: var(--surf); color: var(--txt); }
    #drawer .d-cta { margin-top: 14px; background: var(--gold); color: #180b06; text-align: center; font-weight: 800; }

    @media (max-width: 860px) { .nav-links, .nav-pill { display: none; } .hbg { display: flex; } }

    /* ─── HERO ─── */
    .hero {
      min-height: 100svh; padding: 132px 24px 92px;
      display: flex; align-items: center;
      position: relative; overflow: hidden;
    }
    .hero-bg {
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse 80% 55% at 10% 26%, rgba(157,154,147,.16) 0%, transparent 58%),
        radial-gradient(ellipse 60% 50% at 90% 18%, rgba(201,100,66,.13) 0%, transparent 54%),
        radial-gradient(ellipse 40% 40% at 50% 90%, rgba(157,154,147,.07) 0%, transparent 55%),
        linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
    }
    /* dot grid overlay */
    .hero-bg::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(rgba(255,255,255,.065) 1px, transparent 1px);
      background-size: 30px 30px;
      mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
    }
    /* star sparkles */
    .hero-bg::after {
      content: '';
      position: absolute; inset: 0;
      background-image:
        radial-gradient(1.4px 1.4px at 15% 22%, rgba(255,255,255,.4) 0%, transparent 100%),
        radial-gradient(1.4px 1.4px at 44% 65%, rgba(255,255,255,.25) 0%, transparent 100%),
        radial-gradient(1.4px 1.4px at 67% 18%, rgba(255,255,255,.3) 0%, transparent 100%),
        radial-gradient(1.4px 1.4px at 82% 52%, rgba(255,255,255,.22) 0%, transparent 100%),
        radial-gradient(2px 2px at 90% 12%, rgba(201,100,66,.55) 0%, transparent 100%),
        radial-gradient(2px 2px at 31% 48%, rgba(157,154,147,.55) 0%, transparent 100%),
        radial-gradient(1.5px 1.5px at 57% 78%, rgba(201,100,66,.38) 0%, transparent 100%),
        radial-gradient(1px 1px at 6% 72%, rgba(255,255,255,.32) 0%, transparent 100%);
    }
    .hero-grid {
      position: relative; z-index: 2;
      max-width: 1160px; width: 100%; margin: 0 auto;
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      grid-template-rows: auto auto;
      grid-template-areas: "text verse" "btns verse";
      gap: 0 52px;
      align-items: start;
    }
    .hero-text { grid-area: text; padding-bottom: 28px; }
    .hero-btns-wrap { grid-area: btns; }
    .v-wrap    { grid-area: verse; align-self: center; }

    .h-badge {
      display: inline-flex; align-items: center; gap: 9px;
      background: var(--surf); border: 1px solid var(--bdr2);
      color: var(--muted); font-size: 13px; font-weight: 600;
      padding: 8px 16px; border-radius: 999px; margin-bottom: 26px;
      backdrop-filter: blur(10px);
    }
    .h-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: pulse 2.2s ease-in-out infinite; }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.72)} }

    h1 {
      font-size: clamp(40px, 7.5vw, 80px);
      font-weight: 800; letter-spacing: -.015em; word-spacing: .10em; line-height: 1.06; margin-bottom: 24px;
    }
    .grd { background: linear-gradient(120deg,#f5f2ec 0%,#d98164 52%,#a44a2c 100%); -webkit-background-clip:text; background-clip:text; color:transparent; }
    .h-desc { font-size: 17px; color: var(--muted); line-height: 1.74; max-width: 500px; margin-bottom: 36px; }
    .h-btns { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

    /* verse card with animated gradient border */
    .v-wrap {
      position: relative; border-radius: 28px; padding: 1px;
      background: linear-gradient(135deg, rgba(157,154,147,.35), rgba(201,100,66,.35), rgba(157,154,147,.25));
      animation: border-spin 6s linear infinite;
    }
    @keyframes border-spin {
      0%   { background: linear-gradient(0deg,   rgba(157,154,147,.35), rgba(201,100,66,.35), rgba(157,154,147,.25)); }
      25%  { background: linear-gradient(90deg,  rgba(157,154,147,.35), rgba(201,100,66,.35), rgba(157,154,147,.25)); }
      50%  { background: linear-gradient(180deg, rgba(157,154,147,.35), rgba(201,100,66,.35), rgba(157,154,147,.25)); }
      75%  { background: linear-gradient(270deg, rgba(157,154,147,.35), rgba(201,100,66,.35), rgba(157,154,147,.25)); }
      100% { background: linear-gradient(360deg, rgba(157,154,147,.35), rgba(201,100,66,.35), rgba(157,154,147,.25)); }
    }
    .v-card {
      background: rgba(0,0,0,.92);
      border-radius: 27px; padding: 36px;
      backdrop-filter: blur(20px);
      position: relative; overflow: hidden;
    }
    .v-card::before {
      content: '';
      position: absolute; top: -40%; right: -20%;
      width: 200px; height: 200px; border-radius: 50%;
      background: radial-gradient(circle, rgba(157,154,147,.18) 0%, transparent 65%);
      pointer-events: none;
    }
    .v-quote { font-size: 64px; line-height: .72; color: var(--gold); opacity: .3; font-family: Georgia,serif; margin-bottom: -2px; position: relative; z-index:1; }
    .v-text { font-size: clamp(15px, 2vw, 19px); font-weight: 700; line-height: 1.44; letter-spacing: -.022em; margin-bottom: 12px; position: relative; z-index:1; }
    .v-ref { color: var(--gold); font-weight: 800; font-size: 11px; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 26px; position: relative; z-index:1; }
    .v-chips { display: grid; gap: 9px; position: relative; z-index:1; }
    .v-chip {
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(0,0,0,.35); border: 1px solid var(--bdr);
      border-radius: 12px; padding: 11px 15px; font-size: 13px;
    }
    .v-chip strong { color: var(--txt); font-weight: 700; }
    .v-chip span { color: var(--muted); }

    @media (max-width: 820px) {
      .hero-grid {
        grid-template-columns: 1fr;
        grid-template-areas: "text" "verse" "btns";
        gap: 24px 0;
      }
      .hero-text { padding-bottom: 0; text-align: center; }
      .hero-text .h-badge { justify-content: center; }
      .hero-text .h-desc { margin-left: auto; margin-right: auto; }
      .hero-btns-wrap .h-btns { flex-direction: column; align-items: center; }
      .hero-btns-wrap .h-btns a { width: 100%; max-width: 320px; text-align: center; justify-content: center; }
      .v-card { text-align: center; }
      .v-chip {
        flex-direction: column;
        align-items: center;
        gap: 3px;
        text-align: center;
        justify-content: center;
      }
    }
    @media (max-width: 480px) {
      .hero { padding: 110px 20px 70px; }
      .v-text { font-size: 15px; }
      .v-chips { gap: 8px; }
    }

    /* ─── STATS ─── */
    .stats { border-block: 1px solid var(--bdr); background: var(--surf); }
    .stats-in {
      max-width: 1160px; margin: 0 auto; padding: 36px 24px;
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    }
    .stat { text-align: center; }
    .stat-n {
      font-size: clamp(28px, 4vw, 46px); font-weight: 800; letter-spacing: -.01em; line-height: 1.06;
      background: linear-gradient(135deg, var(--gold), var(--blue));
      -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 6px;
    }
    .stat-l { color: var(--muted); font-size: 12.5px; font-weight: 600; }
    @media (max-width: 600px) { .stats-in { grid-template-columns: repeat(2, 1fr); } }

    /* ─── SECTION BASE ─── */
    .sec { padding: 96px 24px; }
    .sec.dot {
      background-image: radial-gradient(rgba(255,255,255,.045) 1px, transparent 1px);
      background-size: 28px 28px;
    }
    .sec.dark { background: var(--bg2); }
    .sec.dark.dot {
      background-color: var(--bg2);
      background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
      background-size: 28px 28px;
    }
    .sec-head { margin-bottom: 50px; }

    /* ─── ABOUT ─── */
    .a-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .a-card {
      background: var(--surf); border: 1px solid var(--bdr);
      border-radius: var(--r); padding: 28px; transition: .3s;
      position: relative; overflow: hidden;
    }
    .a-card::before {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(157,154,147,.04), rgba(201,100,66,.03));
      opacity: 0; transition: opacity .3s;
    }
    .a-card:hover { border-color: var(--bdr2); transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 40px rgba(157,154,147,.06); }
    .a-card:hover::before { opacity: 1; }
    .a-ico { font-size: 28px; margin-bottom: 16px; }
    .a-card h3 { font-size: 15.5px; font-weight: 800; letter-spacing: -.02em; margin-bottom: 10px; }
    .a-card p { font-size: 13.5px; color: var(--muted); line-height: 1.72; }
    @media (max-width: 700px) { .a-grid { grid-template-columns: 1fr; } }

    /* ─── SCHEDULE — redesigned ─── */
    .sc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
    .sc-card {
      background: var(--surf); border: 1px solid var(--bdr);
      border-radius: var(--r); padding: 24px 22px;
      display: flex; flex-direction: column;
      position: relative; overflow: hidden; transition: .28s;
    }
    .sc-card::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
      background: linear-gradient(90deg, var(--gold), var(--blue));
      transform: scaleX(0); transform-origin: left; transition: transform .3s;
    }
    .sc-card:hover { border-color: var(--bdr2); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,.4); }
    .sc-card:hover::after { transform: scaleX(1); }

    /* pill = day name */
    .sc-pill {
      display: inline-flex; align-self: flex-start;
      font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
      color: var(--gold); background: rgba(201,100,66,.1); border: 1px solid rgba(201,100,66,.18);
      padding: 5px 11px; border-radius: 999px; margin-bottom: 18px;
    }

    /* service name */
    .sc-name {
      font-size: 16.5px; font-weight: 800; letter-spacing: -.03em; line-height: 1.25;
      flex: 1; margin-bottom: 20px;
    }

    /* divider */
    .sc-div { height: 1px; background: var(--bdr); margin-bottom: 18px; }

    /* time — HH and :MM separated for proportion */
    .sc-time-row { display: flex; align-items: baseline; gap: 1px; }
    .sc-hh { font-size: 34px; font-weight: 800; letter-spacing: -.015em; line-height: 1.05; }
    .sc-mm { font-size: 20px; font-weight: 700; color: var(--muted); letter-spacing: -.02em; line-height: 1; }

    @media (max-width: 820px) { .sc-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 420px) { .sc-grid { grid-template-columns: 1fr 1fr; } }

    /* ─── SERMONS ─── */
    .sr-list { display: grid; gap: 9px; }
    .sr-item {
      background: var(--surf); border: 1px solid var(--bdr);
      border-radius: var(--r); overflow: hidden; transition: border-color .2s;
    }
    .sr-item:hover { border-color: var(--bdr2); }
    .sr-sum {
      display: flex; align-items: center; gap: 15px;
      padding: 18px 22px; cursor: pointer; list-style: none;
      font-size: 15px; font-weight: 700; user-select: none;
    }
    .sr-sum::-webkit-details-marker { display: none; }

    /* YouTube-style play icon */
    .sr-ico { flex-shrink: 0; display: flex; align-items: center; }
    .sr-ico svg { width: 38px; height: 38px; }

    .sr-title { flex: 1; }
    .sr-arr { color: var(--muted); font-size: 10px; transition: transform .25s; margin-left: 6px; }
    details[open] .sr-arr { transform: rotate(180deg); }
    .sr-body { padding: 0 22px 22px 75px; }
    .sr-body p { color: var(--muted); font-size: 14px; line-height: 1.72; margin-bottom: 16px; }

    .btn-yt {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,0,0,.12); color: #ff8a6a;
      border: 1px solid rgba(255,0,0,.18);
      font-weight: 700; font-size: 13px;
      padding: 9px 16px; border-radius: 10px; transition: .2s;
    }
    .btn-yt:hover { background: rgba(255,0,0,.22); }

    /* ─── LIVE ─── */
    .live-pill {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,0,0,.12); border: 1px solid rgba(255,0,0,.18);
      color: #ff8a6a; font-size: 11px; font-weight: 700;
      letter-spacing: .08em; text-transform: uppercase;
      padding: 6px 14px; border-radius: 999px; margin-bottom: 14px;
    }
    .live-dot { width: 7px; height: 7px; background: #ff5c39; border-radius: 50%; animation: blink 1.4s ease-in-out infinite; }
    @keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

    .live-box {
      border-radius: 22px; overflow: hidden;
      border: 1px solid var(--bdr);
      box-shadow: 0 0 0 1px rgba(255,255,255,.04), 0 30px 80px rgba(0,0,0,.5);
    }
    .live-frame { aspect-ratio: 16/9; width: 100%; }
    .live-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
    .live-foot {
      background: var(--surf);
      padding: 18px 26px;
      display: flex; align-items: center; justify-content: space-between;
      border-top: 1px solid var(--bdr); flex-wrap: wrap; gap: 12px;
    }
    .live-foot p { color: var(--muted); font-size: 13.5px; }
    .btn-yt-out {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--surf2); border: 1px solid var(--bdr2);
      color: var(--txt); font-weight: 700; font-size: 13px;
      padding: 10px 18px; border-radius: 11px; transition: .2s;
    }
    .btn-yt-out:hover { border-color: var(--bdr3); }

    /* ─── SOCIALS ─── */
    .soc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
    .soc-card {
      display: flex; align-items: center; gap: 14px;
      padding: 20px 18px; border-radius: var(--r); border: 1px solid var(--bdr);
      position: relative; overflow: hidden; transition: transform .28s, border-color .28s, box-shadow .28s;
    }
    .soc-card::before { content: ''; position: absolute; inset: 0; opacity: 0; transition: opacity .28s; }
    .soc-card:hover { transform: translateY(-5px); }
    .soc-card:hover::before { opacity: 1; }

    .soc-fb { background: rgba(24,119,242,.05); }
    .soc-fb::before { background: rgba(24,119,242,.09); }
    .soc-fb:hover { border-color: rgba(24,119,242,.3); box-shadow: 0 16px 40px rgba(24,119,242,.1); }
    .soc-ig { background: rgba(225,48,108,.05); }
    .soc-ig::before { background: rgba(225,48,108,.09); }
    .soc-ig:hover { border-color: rgba(225,48,108,.3); box-shadow: 0 16px 40px rgba(225,48,108,.1); }
    .soc-yt { background: rgba(255,0,0,.05); }
    .soc-yt::before { background: rgba(255,0,0,.09); }
    .soc-yt:hover { border-color: rgba(255,0,0,.3); box-shadow: 0 16px 40px rgba(255,0,0,.08); }
    .soc-tt { background: rgba(255,255,255,.02); }
    .soc-tt::before { background: rgba(255,255,255,.05); }
    .soc-tt:hover { border-color: rgba(255,255,255,.2); box-shadow: 0 16px 40px rgba(0,0,0,.3); }

    .soc-ico { width: 38px; height: 38px; flex-shrink: 0; position: relative; z-index: 1; }
    .soc-ico svg { width: 100%; height: 100%; }
    .soc-info { position: relative; z-index: 1; }
    .soc-info h3 { font-size: 14px; font-weight: 800; margin-bottom: 2px; }
    .soc-info p { font-size: 12px; color: var(--muted); }

    @media (max-width: 820px) { .soc-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 440px) { .soc-grid { grid-template-columns: 1fr; } }

    /* ─── DONATIONS ─── */
    .don-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .don-card {
      background: var(--surf); border: 1px solid var(--bdr);
      border-radius: var(--r); padding: 30px; transition: .28s;
    }
    .don-card:hover { border-color: var(--bdr2); transform: translateY(-5px); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
    .don-card.feat { border-color: rgba(201,100,66,.2); background: linear-gradient(145deg, rgba(201,100,66,.06), rgba(201,100,66,.02)); }
    .don-card.feat:hover { box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 40px rgba(201,100,66,.08); }
    .don-ico { font-size: 28px; margin-bottom: 14px; }
    .don-card h3 { font-size: 17px; font-weight: 800; letter-spacing: -.03em; margin-bottom: 10px; }
    .don-card p { font-size: 13.5px; color: var(--muted); line-height: 1.72; }
    .don-list { list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 7px; }
    .don-list li { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); }
    .don-list li::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
    @media (max-width: 800px) { .don-grid { grid-template-columns: 1fr; } }

    /* ─── IBAN ─── */
    .iban-card {
      margin-top: 20px;
      background: linear-gradient(135deg, rgba(201,100,66,.07), rgba(157,154,147,.04));
      border: 1px solid rgba(201,100,66,.22);
      border-radius: var(--r); padding: 26px 30px;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 20px;
    }
    .iban-info h4 {
      font-size: 11px; font-weight: 700; letter-spacing: .12em;
      text-transform: uppercase; color: var(--gold); margin-bottom: 10px;
    }
    .iban-name { font-size: 14px; font-weight: 700; color: var(--muted); margin-bottom: 8px; }
    .iban-num {
      font-size: 20px; font-weight: 900; letter-spacing: .06em;
      font-variant-numeric: tabular-nums; margin-bottom: 8px;
      font-family: 'Courier New', monospace;
    }
    .iban-meta { font-size: 13px; color: var(--dim); display: flex; gap: 16px; flex-wrap: wrap; }
    .iban-meta span { display: flex; align-items: center; gap: 5px; }
    .copy-btn {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--gold); color: #180b06;
      font-weight: 800; font-size: 13px;
      padding: 12px 20px; border-radius: 12px;
      cursor: pointer; border: none; flex-shrink: 0;
      transition: .22s; font-family: inherit;
    }
    .copy-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(201,100,66,.3); }
    .copy-btn.copied { background: #22c55e; color: #fff; }
    @media (max-width: 640px) { .iban-card { flex-direction: column; align-items: flex-start; } }

    /* ─── MISSIONS ─── */
    .mis-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 50px; }
    .mis-card {
      background: var(--surf); border: 1px solid var(--bdr);
      border-radius: var(--r); padding: 30px;
    }
    .mis-tag {
      display: inline-block; font-size: 10px; font-weight: 700;
      letter-spacing: .1em; text-transform: uppercase; color: var(--gold);
      background: rgba(201,100,66,.1); border: 1px solid rgba(201,100,66,.18);
      padding: 5px 12px; border-radius: 999px; margin-bottom: 14px;
    }
    .mis-card h3 { font-size: 19px; font-weight: 800; letter-spacing: -.03em; margin-bottom: 12px; }
    .mis-card p { font-size: 14px; color: var(--muted); line-height: 1.72; margin-bottom: 18px; }
    .btn-arrow { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-weight: 700; font-size: 14px; transition: gap .2s; }
    .btn-arrow:hover { gap: 13px; }

    .min-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
    .min-card { background: var(--surf); border: 1px solid var(--bdr); border-radius: var(--r); padding: 22px; transition: .25s; }
    .min-card:hover { border-color: var(--bdr2); transform: translateY(-3px); }
    .min-card.full { grid-column: span 2; }
    .min-ico { font-size: 26px; margin-bottom: 11px; }
    .min-card h3 { font-size: 14.5px; font-weight: 800; margin-bottom: 6px; }
    .min-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }

    @media (max-width: 800px) { .mis-grid { grid-template-columns: 1fr; } }

    /* ─── ВЕБИ ─── */
    .vbi-box {
      background: linear-gradient(135deg, rgba(157,154,147,.06), rgba(201,100,66,.04));
      border: 1px solid var(--bdr2); border-radius: 26px; padding: 54px;
      position: relative; overflow: hidden;
    }
    .vbi-box::before {
      content: '';
      position: absolute; top: -40%; right: -8%;
      width: 380px; height: 380px; border-radius: 50%;
      background: radial-gradient(circle, rgba(157,154,147,.08), transparent 65%);
      pointer-events: none;
    }
    .vbi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 38px; position: relative; z-index: 1; }
    .vbi-c { background: rgba(0,0,0,.26); border: 1px solid var(--bdr); border-radius: var(--r); padding: 22px; }
    .vbi-c-ico { font-size: 22px; margin-bottom: 10px; }
    .vbi-c h3 { font-size: 14px; font-weight: 800; margin-bottom: 7px; letter-spacing: -.02em; }
    .vbi-c p { font-size: 13px; color: var(--muted); line-height: 1.65; }
    .vbi-note { margin-top: 24px; font-size: 12px; color: var(--dim); position: relative; z-index: 1; }
    @media (max-width: 680px) { .vbi-box { padding: 34px 22px; } .vbi-grid { grid-template-columns: 1fr; } }

    /* ─── CONTACT ─── */
    .con-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .con-card { background: var(--surf); border: 1px solid var(--bdr); border-radius: var(--r); padding: 36px; }
    .con-card h3 { font-size: 19px; font-weight: 800; letter-spacing: -.03em; margin-bottom: 24px; }
    .con-rows { display: flex; flex-direction: column; }
    .con-row { display: flex; flex-direction: column; gap: 3px; padding: 13px 0; border-bottom: 1px solid var(--bdr); }
    .con-row:last-child { border-bottom: none; }
    .con-row strong { font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--dim); }
    .con-row a, .con-row span { font-size: 15px; font-weight: 600; color: var(--txt); transition: color .18s; }
    .con-row a:hover { color: var(--gold); }
    .map-btn {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--gold); color: #180b06;
      font-weight: 800; font-size: 13px;
      padding: 12px 20px; border-radius: 12px; margin-top: 22px; transition: .22s;
    }
    .map-btn:hover { opacity: .87; transform: translateY(-2px); }

    .slc-list { display: flex; flex-direction: column; gap: 10px; }
    .slc {
      display: flex; align-items: center; gap: 14px;
      padding: 13px 17px; border-radius: 13px;
      background: var(--surf2); border: 1px solid var(--bdr);
      font-size: 14px; font-weight: 600; transition: .2s;
    }
    .slc:hover { border-color: var(--bdr2); transform: translateX(5px); }
    .slc-i { width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; flex-shrink: 0; }
    .slc-i svg { width: 16px; height: 16px; }
    @media (max-width: 700px) { .con-grid { grid-template-columns: 1fr; } }

    /* ─── MAP ─── */
    .map-wrap {
      margin-top: 20px;
      border-radius: var(--r); overflow: hidden;
      border: 1px solid var(--bdr); height: 300px;
    }
    .map-wrap iframe {
      width: 100%; height: 100%; border: 0; display: block;
      filter: invert(92%) hue-rotate(180deg) saturate(0.75) brightness(0.9);
    }

    /* ─── CTA ─── */
    .cta { padding: 100px 24px; text-align: center; position: relative; overflow: hidden; }
    .cta::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 65% 75% at 50% 55%, rgba(201,100,66,.07), transparent 62%);
      pointer-events: none;
    }
    .cta-in { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
    .cta-in h2 { font-size: clamp(28px, 5.5vw, 50px); font-weight: 800; letter-spacing: -.012em; word-spacing: .08em; line-height: 1.14; margin-bottom: 16px; }
    .cta-in p { color: var(--muted); font-size: 16px; margin-bottom: 34px; line-height: 1.72; }
    .cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

    /* ─── FOOTER ─── */
    footer { border-top: 1px solid var(--bdr); padding: 34px 24px; background: var(--bg); }
    .foot-in { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
    .foot-brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 13.5px; letter-spacing: -.02em; }
    .foot-brand img { width: 28px; height: 28px; border-radius: 6px; background: #fff; padding: 3px; object-fit: contain; }
    .foot-nav { display: flex; gap: 20px; font-size: 13px; color: var(--muted); }
    .foot-nav a:hover { color: var(--txt); }
    .foot-copy { font-size: 12.5px; color: var(--dim); }
    @media (max-width: 580px) { .foot-in { flex-direction: column; align-items: center; text-align: center; } .foot-nav { flex-wrap: wrap; justify-content: center; } }
  
    /* ─── линейни иконки вместо емоджита ─── */
    .a-ico svg, .don-ico svg, .min-ico svg, .vbi-c-ico svg {
      width: 26px; height: 26px; color: var(--gold); display: block;
    }
    .a-ico, .don-ico, .min-ico, .vbi-c-ico {
      display: inline-flex; align-items: center; justify-content: center;
      width: 46px; height: 46px; border-radius: 12px;
      background: rgba(201,100,66,.10);
      border: 1px solid rgba(201,100,66,.24);
    }
    .min-ico { width: 40px; height: 40px; border-radius: 10px; }
    .min-ico svg { width: 21px; height: 21px; }
    .vbi-c-ico { width: 40px; height: 40px; border-radius: 10px; }
    .vbi-c-ico svg { width: 21px; height: 21px; }
    .map-btn svg { width: 15px; height: 15px; color: currentColor; vertical-align: -2px; margin-right: 6px; }
  
    /* ─── търсене и „покажи още“ в проповедите ─── */
    .sr-tools[hidden] { display: none; }
    .sr-tools { display: flex; align-items: center; justify-content: space-between;
      gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }
    .sr-search { position: relative; flex: 1; min-width: 220px; max-width: 380px; }
    .sr-search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
      width: 17px; height: 17px; color: var(--dim); pointer-events: none; }
    .sr-search input {
      width: 100%; padding: 12px 14px 12px 40px; border-radius: 10px;
      background: var(--surf); border: 1px solid var(--bdr); color: var(--txt);
      font: inherit; font-size: 14.5px; outline: none; transition: border-color .18s, background .18s;
    }
    .sr-search input::placeholder { color: var(--dim); }
    .sr-search input:focus { border-color: rgba(201,100,66,.5); background: var(--surf2); }
    .sr-count { font-size: 13px; color: var(--dim); white-space: nowrap; }
    .sr-empty { text-align: center; color: var(--muted); font-size: 15px; padding: 26px 0 4px; }
    .sr-more-wrap { display: flex; justify-content: center; margin-top: 22px; }
    .sr-more {
      background: var(--surf); border: 1px solid var(--bdr2); color: var(--txt);
      padding: 12px 26px; border-radius: 999px; font: inherit; font-size: 14px; font-weight: 600;
      cursor: pointer; transition: background .18s, border-color .18s;
    }
    .sr-more:hover { background: var(--surf2); border-color: rgba(201,100,66,.45); }
    @media (max-width: 560px) { .sr-search { max-width: none; } .sr-count { display: none; } }
