

/* ── PAGE BASE ── */
.show-page { font-family: 'Outfit', sans-serif; }

/* ══════════════════════════════════════════
   HERO — cinematic dark command center
══════════════════════════════════════════ */
.show-hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding-bottom: 0;
  padding-top: 30px;
}
/* Atmospheric background */
.show-hero::before {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
}
/* Dot grid */
.show-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse 80% 80% at 75% 30%, black 0%, transparent 70%);
  pointer-events: none;
}

/* Hero inner: left text | right image */
.hero-split {
  max-width: 1400px; 
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
  position: relative; z-index: 1;
}

/* ─ LEFT ─ */
.hs-left {
  padding: 3.5rem 3rem 3.5rem 2.5rem;
  display: flex; flex-direction: column; justify-content: center;
}

.hs-badges {
  display: flex; align-items: center; gap: .45rem; flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.hs-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'Outfit', sans-serif;
  font-size: .6rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: .26rem .78rem; border-radius: 9999px;
}
.hs-badge-cat {
  background: rgba(249,115,22,.12);
  border: 1px solid rgba(249,115,22,.22);
  color: #fda97a;
}
.hs-badge-urgent {
  background: rgba(220,38,38,.18);
  border: 1px solid rgba(220,38,38,.3);
  color: #ff9090;
  animation: urgPulse 2s ease-in-out infinite;
}
@keyframes urgPulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(220,38,38,.3); }
  50% { box-shadow: 0 0 0 6px rgba(220,38,38,0); }
}

/* Title */
.hs-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 1.5rem;
}


/* Meta pills */
.hs-meta {
  display: flex; gap: .65rem; flex-wrap: wrap;
  margin-bottom: 1.6rem;
}
.hs-meta-item {
  display: flex; align-items: center; gap: 5px;
  font-family: 'Outfit', sans-serif;
  font-size: .74rem; font-weight: 500; color: rgba(255,255,255,.32);
}
.hs-meta-item i { color: rgba(249,115,22,.55); font-size: .6rem; }
.hs-meta-item strong { color: rgba(255,255,255,.6); font-weight: 700; }

/* CTA button */
.hs-cta-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: .65rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.hs-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  /* plus de margin-left: auto — aligne à gauche comme les boutons */
}

@media (max-width: 900px) {
  .hs-cta-btn {
    width: 100%;
    justify-content: center;
  }
  .hs-proof {
    width: 100%;
    justify-content: center;
    border-top: 1px solid rgba(255,255,255,.07);
    padding-top: 1rem;
  }
}


@media (max-width: 900px) {
  .hs-cta-wrapper {
    justify-content: center; /* ← ajouter ça */
  }
  .hs-cta-btn {
    width: 100%;
    justify-content: center;
  }
  .hs-proof {
    width: 100%;
    justify-content: center;
    border-top: 1px solid rgba(255,255,255,.07);
    padding-top: 1rem;
  }
}

/* Mobile portrait (≤ 640px) – déjà géré par le 900px, mais on affine */
@media (max-width: 640px) {
    .hs-cta-wrapper {
        align-items: center;
        text-align: center;
    }

    .hs-proof {
      margin-left: 0;   /* annule le margin-left: auto */
      width: 100%;
      padding-top: .75rem;
      border-top: 1px solid rgba(255,255,255,.07);
  }
}


.hs-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--orange); color: white;
  font-family: 'Outfit', sans-serif; font-size: .9rem; font-weight: 700;
  padding: .58rem 1.55rem; 
  border-radius: 9999px; border: none;
  cursor: pointer; transition: all .22s;
  box-shadow: 0 2px 4px rgba(249,115,22,.4);
  width: fit-content; flex-shrink: 0; margin-bottom: 0;
  text-decoration: none;
}
.hs-cta-btn:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 3px 8px rgba(249,115,22,.55);
}
/* Social proof */

.hs-proof-avs { display: flex; }
.hs-proof-av {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--navy-light);
  border: 2.5px solid var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: .56rem; font-weight: 700; color: rgba(255,255,255,.7);
  margin-left: -9px;
}
.hs-proof-av:first-child { margin-left: 0; }
.hs-proof-txt {
  font-family: 'Outfit', sans-serif;
  font-size: .74rem; color: rgba(255,255,255,.32);
}
.hs-proof-txt strong { color: rgba(255,255,255,.58); font-weight: 700; }

/* ─ RIGHT : image + floating chip ─ */
.hs-right {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.hs-img {
  width: 100%; height: 100%; min-height: 420px;
  object-fit: cover; display: block;
  filter: brightness(.85) saturate(1.1);
  transition: transform 7s ease, filter .4s;
}
.hs-right:hover .hs-img { transform: scale(1.03); filter: brightness(.9) saturate(1.15); }

/* Gradient overlay: left edge blends into navy */
.hs-img-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, var(--navy) 0%, transparent 28%),
    linear-gradient(to top, rgba(15,23,42,.7) 0%, transparent 45%);
  pointer-events: none;
}

/* ── PROGRESS CHIP floating on image ── */
.hs-prog-chip {
  position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  background: rgba(15,23,42,.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 20px;
  padding: 1.25rem 1.4rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
  margin-top: 10px;
}
.hpc-top {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: .6rem;
}
.hpc-amt {
  font-family: 'Fraunces', serif;
  font-size: 1.65rem; font-weight: 900; color: #fff;
  letter-spacing: -.03em; line-height: 1;
}
.hpc-amt small {
  font-family: 'Outfit', sans-serif;
  font-size: .38em; color: rgba(255,255,255,.38); font-weight: 400; vertical-align: middle;
}
.hpc-pct {
  font-family: 'Outfit', sans-serif;
  font-size: .85rem; font-weight: 800; color: var(--orange);
}
.hpc-bar {
  height: 5px; background: rgba(255,255,255,.1);
  border-radius: 10px; overflow: hidden; margin-bottom: .5rem;
}
.hpc-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), var(--amber));
  border-radius: 10px; position: relative; overflow: hidden;
}
.hpc-fill::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.4), transparent);
  animation: sheen 2.8s linear infinite;
}
@keyframes sheen { from{transform:translateX(-150%)} to{transform:translateX(250%)} }
.hpc-foot {
  display: flex; justify-content: space-between;
  font-family: 'Outfit', sans-serif;
  font-size: .69rem; color: rgba(255,255,255,.3);
}

/* ══════════════════════════════════════════
   PAGE BODY — 2-col layout
══════════════════════════════════════════ */
.show-body {
  max-width: 1400px; margin: 0 auto;
  padding: 2.5rem 2.5rem 7rem;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2.5rem;
  align-items: start;
  background: var(--warm-bg);
}

/* ══════════════════════════════════════════
   LEFT — story + donors
══════════════════════════════════════════ */

/* TABS */
.show-tabs {
  display: flex; gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 1.75rem;
}
.show-tab-btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: .75rem 1.35rem;
  font-family: 'Outfit', sans-serif;
  font-size: .8rem; font-weight: 700;
  color: var(--text-soft); background: transparent; border: none;
  border-bottom: 2.5px solid transparent; margin-bottom: -2px;
  cursor: pointer; transition: all .2s; letter-spacing: .02em;
}
.show-tab-btn:hover { color: var(--text-dark); }
.show-tab-btn.active { color: var(--orange); border-bottom-color: var(--orange); }
.show-tab-btn i { font-size: .72rem; }
.show-tab-content { display: none; }
.show-tab-content.active { display: block; }

/* STORY CARD */
.story-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}
.story-inner { padding: 2.25rem 2.5rem; }
.story-lead {
  font-family: 'Fraunces', serif;
  font-size: 1.12rem; font-style: italic;
  color: var(--text-body); line-height: 1.78;
  padding-bottom: 1.5rem; margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.story-lead::before {
  content: '\201C';
  position: absolute; top: -1.2rem; left: -.5rem;
  font-family: 'Fraunces', serif; font-size: 6rem;
  color: rgba(249,115,22,.07); line-height: 1;
  pointer-events: none;
}
.story-text {
  font-family: 'Outfit', sans-serif;
  font-size: .93rem; color: var(--text-body); line-height: 1.85;
}
.story-text p { margin-bottom: 1rem; }

/* DONORS CARD */
.donors-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}

/* TOP DONOR — featured treatment */
.top-donor-featured {
  padding: 1.5rem 1.75rem;
  background: linear-gradient(135deg, rgba(249,115,22,.06) 0%, rgba(251,191,36,.04) 100%);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 14px;
  position: relative;
}
.top-donor-featured::before {
  /* content: 'TOP DONATEUR'; */
  position: absolute; top: 1rem; right: 1.25rem;
  font-family: 'Outfit', sans-serif;
  font-size: .58rem; font-weight: 800; letter-spacing: .1em;
  color: var(--amber); opacity: .7;
}
.top-av {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: .85rem; font-weight: 800;
  flex-shrink: 0;
  border: 2.5px solid white;
  box-shadow: 0 0 0 2px var(--amber), 0 4px 16px rgba(251,191,36,.3);
}
.top-name {
  font-family: 'Outfit', sans-serif;
  font-size: .95rem; font-weight: 800; color: var(--text-dark);
  display: flex; align-items: center; gap: 7px; margin-bottom: 3px;
}
.top-crown { color: var(--amber); font-size: .8rem; }
.top-msg {
  font-family: 'Outfit', sans-serif;
  font-size: .78rem; color: var(--text-soft); font-style: italic;
}
.top-amount {
  margin-left: auto; text-align: right; flex-shrink: 0;
}
.top-amount-n {
  font-family: 'Fraunces', serif;
  font-size: 1.35rem; font-weight: 700; color: var(--orange-dark);
  letter-spacing: -.02em; line-height: 1;
}
.top-amount-l {
  font-family: 'Outfit', sans-serif;
  font-size: .65rem; color: var(--text-xsoft); margin-top: 2px;
}

/* Other donors */
.donors-list-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.75rem;
  border-bottom: 1px solid var(--border);
}
.donors-list-head h4 {
  font-family: 'Outfit', sans-serif;
  font-size: .78rem; font-weight: 700; color: var(--text-soft);
  letter-spacing: .06em; text-transform: uppercase;
}
.donors-count-badge {
  font-family: 'Outfit', sans-serif;
  font-size: .7rem; font-weight: 800; color: var(--orange-dark);
  background: var(--orange-light); padding: .2rem .65rem;
  border-radius: 9999px;
}

.donor-row {
  display: flex; align-items: center; gap: 12px;
  padding: .9rem 1.75rem;
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.donor-row:last-child { border-bottom: none; }
.donor-row:hover { background: var(--warm-bg); }

.d-rank {
  font-family: 'Outfit', sans-serif;
  font-size: .62rem; font-weight: 800;
  color: var(--text-xsoft); width: 18px; text-align: center; flex-shrink: 0;
}
.d-av {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: .72rem; font-weight: 800;
  flex-shrink: 0;
  border: 2px solid var(--card-bg);
  box-shadow: 0 0 0 1.5px var(--border);
}
.d-info { flex: 1; min-width: 0; }
.d-name {
  font-family: 'Outfit', sans-serif;
  font-size: .875rem; font-weight: 700; color: var(--text-dark);
}
.d-msg {
  font-size: .75rem; color: var(--text-soft); font-style: italic;
  margin-top: 2px; white-space: normal; word-break: break-word;
}
.d-right { text-align: right; flex-shrink: 0; }
.d-amount {
  font-family: 'Outfit', sans-serif;
  font-size: .875rem; font-weight: 800; color: var(--orange-dark);
}
.d-date { font-size: .68rem; color: var(--text-xsoft); margin-top: 2px; }

.donors-empty { text-align: center; padding: 3.5rem; color: var(--text-xsoft); }
.donors-empty i { font-size: 2.5rem; display: block; margin-bottom: .75rem; opacity: .2; }
.donors-empty p {
  font-family: 'Outfit', sans-serif; font-size: .88rem;
}

/* ══════════════════════════════════════════
   RIGHT SIDEBAR
══════════════════════════════════════════ */
.sidebar {
  display: flex; flex-direction: column; gap: 1.25rem;
  position: sticky; top: 80px;
}

/* ── DONATION WIDGET ── */
.don-widget {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(0,0,0,.07);
}

/* Dark header with collected amount */
.dw-header {
  background: var(--navy);
  padding: .75rem 1rem;
  position: relative; overflow: hidden;
}

.dw-collected {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 900; color: white;
  letter-spacing: -.04em; line-height: 1;
  margin-bottom: .08rem; position: relative; z-index: 1;
}
.dw-header::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(249,115,22,.18) 0%, transparent 65%);
  pointer-events: none;
}
.dw-header::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 22px 22px;
}

.dw-collected small {
  font-family: 'Outfit', sans-serif;
  font-size: .35em; color: rgba(255,255,255,.35); font-weight: 400; vertical-align: middle;
}

.dw-vs {
  font-family: 'Outfit', sans-serif;
  font-size: .7rem; color: rgba(255,255,255,.3);
  margin-bottom: .7rem; position: relative; z-index: 1; /* ← était .9rem */
}

.dw-bar {
  height: 4px; /* ← était 5px, subtil */
  background: rgba(255,255,255,.1);
  border-radius: 10px; overflow: hidden;
  margin-bottom: .4rem; position: relative; z-index: 1;
}
.dw-bar-fill {
  height: 100%; background: linear-gradient(90deg, var(--orange), var(--amber));
  border-radius: 10px; position: relative; overflow: hidden;
  transition: width 1.6s cubic-bezier(.4,0,.2,1);
}
.dw-bar-fill::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.45), transparent);
  animation: sheen 2.8s linear infinite;
}
.dw-stats {
  display: flex; justify-content: space-between;
  position: relative; z-index: 1;
}
.dw-stat span {
  font-family: 'Outfit', sans-serif;
  font-size: .7rem; color: rgba(255,255,255,.3);
}
.dw-stat strong { color: rgba(255,255,255,.72); }
.dw-pct { color: var(--orange) !important; font-weight: 800 !important; font-size: .8rem !important; }

/* Urgency strip */
.dw-urgency {
  background: rgba(220,38,38,.07);
  border-bottom: 1px solid rgba(220,38,38,.15);
  color: #b91c1c;
  font-family: 'Outfit', sans-serif;
  font-weight: 600; padding: .65rem 1.4rem;
  display: flex; align-items: center; gap: 9px; font-size: .76rem;
}
.dw-urgency i { font-size: .8rem; flex-shrink: 0; }

/* Form body */
.dw-body { padding: 1.35rem 1.5rem; }
.dw-lbl {
  font-family: 'Outfit', sans-serif;
  font-size: .62rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-soft); margin-bottom: .55rem;
}

/* Amount grid */
.amt-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: .35rem;
  margin-bottom: .6rem;
}
.amt-btn {
  padding: .55rem .25rem; text-align: center;
  background: var(--warm-bg); border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'Outfit', sans-serif; font-size: .75rem; font-weight: 700; color: var(--text-soft);
  cursor: pointer; transition: all .18s;
}
.amt-btn:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-light); }
.amt-btn.on {
  background: var(--orange-light);
  border-color: var(--orange); color: var(--orange-dark);
  box-shadow: 0 2px 10px rgba(249,115,22,.2);
}

/* Custom amount */
.custom-row {
  display: flex; align-items: center;
  background: var(--warm-bg); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 0 .85rem; gap: 6px;
  margin-bottom: .9rem; transition: border-color .2s;
}
.custom-row:focus-within { border-color: var(--orange); background: var(--card-bg); }
.custom-cur {
  font-family: 'Outfit', sans-serif;
  font-size: .62rem; font-weight: 800; color: var(--text-xsoft); flex-shrink: 0;
}
.custom-inp {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: 'Outfit', sans-serif; font-size: .875rem; color: var(--text-dark);
  padding: .58rem 0;
}
.custom-inp::placeholder { color: var(--text-xsoft); }

/* Anon toggle */
.anon-row {
  display: flex; align-items: center; gap: 10px;
  padding: .78rem .9rem;
  background: var(--warm-bg); border: 1.5px solid var(--border); border-radius: 10px;
  cursor: pointer; margin-bottom: .9rem; user-select: none;
  transition: border-color .18s;
}
.anon-row:hover { border-color: var(--orange); }
.anon-lbl { font-family: 'Outfit', sans-serif; font-size: .82rem; font-weight: 600; color: var(--text-body); }
.tog { width: 36px; height: 20px; border-radius: 10px; background: var(--text-xsoft); position: relative; transition: background .2s; flex-shrink: 0; }
.tog.on { background: var(--orange); }
.tog-th { position: absolute; top: 2px; left: 2px; width: 16px; height: 16px; border-radius: 50%; background: white; transition: left .2s; box-shadow: 0 1px 4px rgba(0,0,0,.25); }
.tog.on .tog-th { left: 18px; }

/* Form fields */
.field { margin-bottom: .6rem; }
.field-inp {
  width: 100%; background: var(--warm-bg); border: 1.5px solid var(--border);
  border-radius: 10px; padding: .65rem .9rem;
  font-family: 'Outfit', sans-serif; font-size: .875rem; color: var(--text-dark);
  outline: none; transition: border-color .18s, background .18s;
}
.field-inp:focus { border-color: var(--orange); background: var(--card-bg); box-shadow: 0 0 0 3px rgba(249,115,22,.09); }
.field-inp::placeholder { color: var(--text-xsoft); }
textarea.field-inp { resize: none; min-height: 66px; }
.field-2 { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; margin-bottom: .6rem; }

/* Divider */
.dw-divider { height: 1px; background: var(--border); margin: 1rem 0; }

/* Payment methods */
.pm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .35rem; margin-bottom: 1rem; }
.pm-btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: .6rem .5rem;
  background: var(--warm-bg); border: 1.5px solid var(--border); border-radius: 10px;
  font-family: 'Outfit', sans-serif; font-size: .78rem; font-weight: 700; color: var(--text-soft);
  cursor: pointer; transition: all .18s;
}
.pm-btn:hover { border-color: var(--orange); color: var(--orange); }
.pm-btn.on { background: var(--navy); color: white; border-color: var(--navy); }

/* DONATE BUTTON — the hero CTA */
.btn-don {
  width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--orange); color: white;
  font-family: 'Outfit', sans-serif; font-size: .95rem; font-weight: 800;
  padding: 1rem; border-radius: 12px; border: none;
  cursor: pointer; transition: all .22s;
  box-shadow: 0 6px 24px rgba(249,115,22,.35);
  margin-bottom: .6rem;
  letter-spacing: .01em;
}
.btn-don:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(249,115,22,.5); }
.btn-don:disabled { opacity: .55; cursor: not-allowed; transform: none; }

.don-lock {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-family: 'Outfit', sans-serif; font-size: .7rem; color: var(--text-xsoft); font-weight: 500;
}
.don-lock i { color: var(--teal); font-size: .65rem; }

/* ── SHARE BOX ── */
.share-box {
  background: var(--card-bg); border: 1.5px solid var(--border);
  border-radius: 20px; padding: 1.35rem 1.5rem;
}
.share-head {
  font-family: 'Outfit', sans-serif;
  font-size: .82rem; font-weight: 800; color: var(--text-dark);
  margin-bottom: .3rem; display: flex; align-items: center; gap: 7px;
}
.share-head i { color: var(--orange); }
.share-sub { font-family: 'Outfit', sans-serif; font-size: .78rem; color: var(--text-soft); line-height: 1.55; margin-bottom: .9rem; }
.share-btns { display: flex; gap: .4rem; flex-wrap: wrap; }
.sh-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Outfit', sans-serif; font-size: .78rem; font-weight: 700;
  padding: .5rem .95rem; border-radius: 9999px; border: none; cursor: pointer; transition: all .2s;
}
.sh-wa { background: #25d366; color: white; }
.sh-wa:hover { background: #1daa54; transform: translateY(-1px); }
.sh-fb { background: #1877f2; color: white; }
.sh-fb:hover { background: #0d65d9; transform: translateY(-1px); }
.sh-cp { background: var(--warm-bg); color: var(--text-body); border: 1.5px solid var(--border); }
.sh-cp:hover { border-color: var(--orange); color: var(--orange); background: var(--orange-light); }

/* ── TRUST BOX ── */
.trust-box {
  background: var(--teal-light); border: 1px solid rgba(13,148,136,.18);
  border-radius: 20px; padding: 1.25rem 1.4rem;
}
.trust-head {
  font-family: 'Outfit', sans-serif;
  font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--teal); margin-bottom: .85rem;
  display: flex; align-items: center; gap: 7px;
}
.trust-rows { display: flex; flex-direction: column; gap: .42rem; }
.trust-row { display: flex; align-items: center; gap: 8px; font-family: 'Outfit', sans-serif; font-size: .79rem; font-weight: 600; color: var(--text-body); }
.trust-row i { color: var(--teal); font-size: .72rem; flex-shrink: 0; }

/* ── ORG BOX ── */
.org-box {
  background: var(--card-bg); border: 1.5px solid var(--border);
  border-radius: 20px; padding: 1.35rem 1.5rem;
}
.org-head { display: flex; align-items: center; gap: 12px; margin-bottom: 1.1rem; }
.org-av {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange-light); color: var(--orange);
  display: flex; align-items: center; justify-content: center; font-size: .95rem;
  flex-shrink: 0; border: 2px solid var(--card-bg); box-shadow: 0 0 0 1.5px var(--border);
}
.org-name { font-family: 'Outfit', sans-serif; font-size: .875rem; font-weight: 800; color: var(--text-dark); }
.org-role { font-family: 'Outfit', sans-serif; font-size: .7rem; color: var(--text-xsoft); margin-top: 1px; }
.org-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; }
.org-stat { text-align: center; padding: .7rem .4rem; background: var(--warm-bg); border-radius: 10px; border: 1px solid var(--border); }
.org-n { font-family: 'Fraunces', serif; font-size: 1.35rem; font-weight: 700; color: var(--text-dark); letter-spacing: -.02em; line-height: 1; }
.org-l { font-family: 'Outfit', sans-serif; font-size: .58rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-xsoft); margin-top: 3px; }

/* ══════════════════════════════════════════
   TOAST + MODAL
══════════════════════════════════════════ */
.toast {
  position: fixed; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%) translateY(60px);
  background: var(--navy-mid); color: white;
  display: flex; align-items: center; gap: 8px;
  padding: .7rem 1.35rem; border-radius: 9999px;
  font-family: 'Outfit', sans-serif; font-size: .84rem; font-weight: 600;
  box-shadow: var(--shadow-lg); z-index: 9999;
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .3s; opacity: 0;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.toast i { color: var(--teal); }

.modal-bg {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.55); backdrop-filter: blur(8px);
  z-index: 9998;
  display: flex; align-items: center; justify-content: center; padding: 1.5rem;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-bg.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--card-bg); border-radius: 24px;
  padding: 2.5rem; max-width: 440px; width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,.25);
  transform: scale(.95) translateY(12px);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  position: relative;
}
.modal-bg.open .modal-box { transform: none; }
.modal-x {
  position: absolute; top: 1rem; right: 1rem;
  width: 32px; height: 32px; background: var(--warm-bg); border: 1px solid var(--border);
  border-radius: 8px; color: var(--text-soft); cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: .8rem; transition: all .18s;
}
.modal-x:hover { background: var(--border); color: var(--text-dark); }
.modal-ico { font-size: 3rem; margin-bottom: 1rem; display: block; }
.modal-box h2 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem; margin-bottom: .75rem; color: var(--text-dark);
}
.modal-box p { font-family: 'Outfit', sans-serif; font-size: .88rem; color: var(--text-soft); line-height: 1.7; margin-bottom: 1.5rem; }
.modal-share {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--orange); color: white;
  font-family: 'Outfit', sans-serif; font-size: .9rem; font-weight: 700;
  padding: .82rem 1.5rem; border-radius: 9999px; border: none; cursor: pointer;
  box-shadow: var(--shadow-orange); transition: all .22s; width: 100%; margin-bottom: .65rem;
}
.modal-share:hover { background: var(--orange-dark); transform: translateY(-1px); }

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(22px); animation: fu .65s cubic-bezier(.4,0,.2,1) forwards; }
.d1{animation-delay:.06s} .d2{animation-delay:.16s}
.d3{animation-delay:.26s} .d4{animation-delay:.36s} .d5{animation-delay:.46s}
@keyframes fu { to { opacity:1; transform:none; } }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media(max-width:1100px) {
  .show-body { grid-template-columns: 1fr; padding: 2rem 1.5rem 5rem; }
  .sidebar { position: static; }
}
@media(max-width:900px) {
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hs-right { order: -1; min-height: 300px; }
  .hs-img { min-height: 300px; }
  .hs-img-overlay { background: linear-gradient(to bottom, transparent 45%, var(--navy) 100%); }
  .hs-prog-chip { position: static; border-radius: 0; border: none; border-top: 1px solid rgba(255,255,255,.08); background: rgba(15,23,42,.95); }
  .hs-left { padding: 1.75rem 1.25rem 2rem; }
}
@media(max-width:640px) {
  .hs-left { padding: 1.4rem 1rem 1.75rem; }
  .hs-title { font-size: clamp(1.5rem,6vw,2rem); }
  .show-body { padding: 1.25rem .75rem 5rem; }
  .story-inner { padding: 1.5rem; }
  .dw-body { padding: 1rem 1.1rem; }
  .amt-grid { grid-template-columns: repeat(2,1fr); }
  .field-2 { grid-template-columns: 1fr; }
  .pm-grid { grid-template-columns: 1fr; }
  .org-stats { grid-template-columns: repeat(2,1fr); }

  .d-av, .top-av {
    display: none;
  }
}
