/* =============================================
   AYUDEMOS A LUCAS · style.css (optimizada)
   ============================================= */

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

:root {
  --blue-50: #eff6ff;
  --blue-100:#dbeafe;
  --blue-200:#bfdbfe;
  --blue-500:#3b82f6;
  --blue-600:#2563eb;
  --blue-700:#1d4ed8;
  --blue-800:#1e40af;
  --green-500:#16a34a;
  --gray-50:#f8fafc;
  --gray-100:#f1f5f9;
  --gray-200:#e2e8f0;
  --gray-300:#cbd5e1;
  --gray-500:#64748b;
  --gray-600:#475569;
  --gray-700:#334155;
  --gray-800:#1e293b;
  --gray-900:#0f172a;
  --white:#ffffff;

  --font-sans:'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--gray-50);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 88px;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font: inherit; }

.container {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--blue-600);
  color: var(--white);
  padding: 12px 22px;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--blue-700); box-shadow: var(--shadow-md); }

.btn-secondary {
  background: var(--white);
  color: var(--blue-700);
  border: 1px solid var(--blue-200);
  padding: 14px 24px;
}
.btn-secondary:hover { background: var(--blue-50); }

.btn-sm { padding: 10px 18px; font-size: .92rem; }
.btn-cta {
  background: var(--blue-600);
  color: var(--white);
  font-size: 1.05rem;
  padding: 17px 30px;
  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.28);
}
.btn-cta:hover { background: var(--blue-700); box-shadow: 0 16px 36px rgba(37, 99, 235, 0.32); }
.btn-xl { padding: 18px 36px; font-size: 1.1rem; }

.pulse-btn { position: relative; overflow: hidden; }
.pulse-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  animation: pulse-ring 2.4s ease-out infinite;
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.35); }
  70% { box-shadow: 0 0 0 14px rgba(37, 99, 235, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226,232,240,.9);
}
.header-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 1.35rem; }
.logo-text { font-weight: 900; color: var(--blue-700); letter-spacing: -.02em; }

.hero {
  background: linear-gradient(180deg, #eff6ff 0%, #f8fbff 42%, #ffffff 100%);
  padding: 58px 0 40px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 44px;
  align-items: center;
}
.hero-photo-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.hero-photo { width: 100%; height: 400px; object-fit: cover; object-position: center top; }
.hero-photo-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 18px 14px;
  background: linear-gradient(transparent, rgba(15,23,42,.72));
  color: var(--white);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--white);
  color: var(--blue-700);
  border: 1px solid var(--blue-200);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 18px;
}
.hero-title {
  font-size: clamp(2.3rem, 5.5vw, 4rem);
  line-height: 1.03;
  letter-spacing: -.04em;
  color: var(--gray-900);
  margin-bottom: 18px;
}
.hero-subtitle {
  color: var(--gray-700);
  font-size: 1.06rem;
  max-width: 620px;
  line-height: 1.55;
}

.hero-subtitle strong {
  color: var(--gray-900);
  font-weight: 800;
}

.hero-subtitle .hero-alert {
  display: block;
  margin-top: 14px;
  color: #ef4444;
  font-weight: 900;
}
.hero-subtitle strong { color: var(--gray-900); }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.hero-micro {
  margin-top: 14px;
  color: var(--gray-500);
  font-size: .9rem;
}

.progress-section { padding-bottom: 18px; }
.progress-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--blue-600);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
  padding: 28px 32px 22px;
}
.progress-stats {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.stat-block { display: flex; flex-direction: column; gap: 5px; }
.stat-center { text-align: center; }
.stat-right { text-align: right; }
.stat-label {
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-500);
  font-weight: 800;
}
.stat-value {
  font-size: clamp(1.45rem, 4vw, 2.15rem);
  line-height: 1;
  color: var(--gray-900);
  font-weight: 900;
  letter-spacing: -.03em;
}
.stat-value.green { color: var(--green-500); }
.progress-bar-wrapper { display: flex; align-items: center; gap: 14px; }
.progress-bar-track {
  flex: 1;
  height: 18px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--gray-100);
  box-shadow: inset 0 2px 6px rgba(15,23,42,.06);
}
.progress-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
  transition: width 1.5s cubic-bezier(.22,.61,.36,1);
  position: relative;
}
.progress-bar-fill::after {
  content: '';
  position: absolute;
  inset: 0 0 0 auto;
  width: 8px;
  background: rgba(255,255,255,.45);
}
.progress-pct { font-weight: 900; color: var(--green-500); min-width: 40px; text-align: right; }
.progress-urgency { text-align: center; margin-top: 14px; }
.urgency-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: .78rem;
  background: #eff6ff;
  color: var(--blue-700);
  border: 1px solid var(--blue-200);
  font-weight: 700;
}

.trust-strip { padding: 8px 0 10px; }
.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.trust-chip {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: .88rem;
  color: var(--gray-700);
  font-weight: 700;
  box-shadow: var(--shadow-sm);
}

.section-heading { margin-bottom: 28px; }
.section-heading-center { text-align: center; max-width: 760px; margin: 0 auto 28px; }
.section-heading.compact, .section-heading-center.compact { margin-bottom: 22px; }
.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue-700);
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.section-heading h2 {
  color: var(--gray-900);
  font-size: clamp(1.8rem, 4vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 10px;
}
.section-heading p { color: var(--gray-600); }

.story-section,
.coverage-section,
.donate-section,
.share-section,
.faq-section,
.final-cta {
  padding: 68px 0;
}
.story-grid {
  display: grid;
  grid-template-columns: 1.35fr .95fr;
  gap: 22px;
}
.story-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.story-card-soft { background: linear-gradient(180deg, #eff6ff, #ffffff); }
.story-lead {
  color: var(--gray-800);
  font-size: 1.08rem;
  line-height: 1.8;
  margin-bottom: 18px;
}
.story-card p + p { margin-top: 14px; color: var(--gray-700); }
.story-quote {
  margin-top: 20px;
  padding: 18px 20px;
  border-left: 4px solid var(--blue-600);
  background: var(--blue-50);
  color: var(--blue-800);
  border-radius: 0 16px 16px 0;
  font-style: italic;
  font-weight: 600;
}
.story-card h3 {
  font-size: 1.18rem;
  color: var(--gray-900);
  margin-bottom: 14px;
}
.story-points {
  list-style: none;
  display: grid;
  gap: 12px;
}
.story-points li {
  display: flex;
  gap: 10px;
  color: var(--gray-700);
}
.story-points li::before {
  content: '✓';
  color: var(--green-500);
  font-weight: 900;
}

.coverage-section { background: var(--white); }
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.coverage-card {
  background: #fcfdff;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.coverage-icon { font-size: 1.6rem; margin-bottom: 12px; }
.coverage-card h3 { font-size: 1.08rem; color: var(--gray-900); margin-bottom: 8px; }
.coverage-card p { color: var(--gray-600); }

.donate-main-card {
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
  border: 2px solid var(--blue-200);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
}
.donate-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-bottom: 24px;
}
.step-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 14px;
  font-weight: 700;
  color: var(--gray-700);
}
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blue-600);
  color: var(--white);
  font-size: .95rem;
  flex-shrink: 0;
}

.donation-amount-step {
  background: rgba(255,255,255,.82);
  border: 1px solid var(--blue-200);
  border-radius: 24px;
  padding: 22px;
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.donation-amount-step.is-hidden,
.is-hidden {
  display: none !important;
}
.donation-amount-step h3 {
  font-size: 1.22rem;
  color: var(--gray-900);
  margin-bottom: 8px;
}
.donation-amount-subtitle {
  color: var(--gray-600);
  margin-bottom: 16px;
}
.donation-amount-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}
.donation-amount-option {
  appearance: none;
  border: 1px solid var(--blue-200);
  background: var(--white);
  color: var(--blue-700);
  border-radius: 16px;
  padding: 14px 12px;
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
}
.donation-amount-option:hover {
  transform: translateY(-1px);
  border-color: var(--blue-500);
  box-shadow: var(--shadow-sm);
}
.donation-amount-option.is-selected {
  background: var(--blue-600);
  color: var(--white);
  border-color: var(--blue-600);
  box-shadow: 0 10px 24px rgba(37, 99, 235, .22);
}
.custom-amount-wrapper {
  margin-bottom: 14px;
}
.custom-amount-label {
  display: block;
  margin-bottom: 8px;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-500);
}
.custom-amount-input-shell {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 0 16px;
}
.custom-amount-currency {
  color: var(--blue-700);
  font-size: 1.05rem;
  font-weight: 900;
}
#customDonationAmount {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  padding: 16px 0;
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--gray-900);
}
.donation-view-btn {
  width: 100%;
  padding: 15px 22px;
  font-size: 1rem;
}
.donation-view-btn.is-loading {
  opacity: .88;
  cursor: wait;
}
.bank-loading-box {
  display: grid;
  place-items: center;
  gap: 12px;
  background: rgba(255,255,255,.84);
  border: 1px solid var(--blue-200);
  border-radius: 24px;
  padding: 30px 18px;
  margin-bottom: 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.bank-loading-spinner {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 4px solid var(--blue-100);
  border-top-color: var(--blue-600);
  animation: bankSpin .9s linear infinite;
}
.bank-loading-text {
  color: var(--blue-800);
  font-weight: 800;
  letter-spacing: -.01em;
}
@keyframes bankSpin {
  to { transform: rotate(360deg); }
}
.bank-details-wrapper {
  display: grid;
  gap: 18px;
}
.selected-donation-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  background: var(--white);
  border: 1px solid var(--blue-200);
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 800;
  color: var(--blue-800);
  box-shadow: var(--shadow-sm);
}
.selected-donation-chip strong {
  margin-left: 6px;
}
.bank-fields-grid { display: grid; gap: 18px; margin-bottom: 22px; }
.bank-detail label {
  display: block;
  margin-bottom: 8px;
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gray-500);
}
.copy-field {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  padding: 14px 16px;
  flex-wrap: wrap;
}
.copy-field span {
  flex: 1;
  min-width: 0;
  word-break: break-word;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 800;
  color: var(--gray-900);
}
.copy-field-soft span { font-family: var(--font-sans); }
.btn-copy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: var(--blue-600);
  color: var(--white);
  border-radius: 999px;
  padding: 11px 16px;
  font-weight: 800;
  cursor: pointer;
  transition: .2s ease;
}
.btn-copy:hover { background: var(--blue-700); transform: translateY(-1px); }
.btn-copy.copied,
.btn.copied { background: var(--green-500); color: var(--white); border-color: var(--green-500); }
.btn-copy-soft { background: var(--gray-800); }
.btn-copy-soft:hover { background: var(--gray-900); }
.donate-reassurance {
  display: grid;
  gap: 10px;
  background: var(--blue-50);
  border: 1px solid var(--blue-200);
  border-radius: 22px;
  padding: 18px;
}
.reassurance-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--blue-800);
  font-size: .94rem;
}
.reassurance-item svg { flex-shrink: 0; margin-top: 2px; color: var(--blue-600); }

.share-card {
  background: linear-gradient(180deg, #ffffff, #eff6ff);
  border: 1px solid var(--gray-200);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
}
.share-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}



.social-proof-section {
  padding: 34px 0 58px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.messages-strip {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 20px 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.messages-strip::-webkit-scrollbar { display: none; }
.message-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 18px 20px;
  min-width: 260px;
  max-width: 320px;
  flex-shrink: 0;
  scroll-snap-align: start;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.message-card::before {
  content: '“';
  position: absolute;
  top: 8px;
  left: 16px;
  font-size: 3rem;
  color: var(--blue-100);
  line-height: 1;
  font-family: Georgia, serif;
}
.message-header {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.message-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  flex-shrink: 0;
}
.message-meta { flex: 1; }
.message-name { font-size: .85rem; font-weight: 700; color: var(--gray-900); margin-bottom: 1px; }
.message-amount { font-size: .78rem; font-weight: 700; color: var(--blue-600); }
.message-time { font-size: .78rem; color: var(--gray-500); white-space: nowrap; padding-top: 4px; }
.message-text { font-size: .92rem; color: var(--gray-600); line-height: 1.55; }

.faq-section { background: var(--white); }
.faq-list { display: grid; gap: 14px; }
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  text-align: left;
  font-weight: 800;
  color: var(--gray-900);
  cursor: pointer;
}
.faq-icon { flex-shrink: 0; transition: transform .2s ease; }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .25s ease;
}
.faq-answer p {
  overflow: hidden;
  padding: 0 22px;
  color: var(--gray-600);
}
.faq-item.open .faq-answer { grid-template-rows: 1fr; }
.faq-item.open .faq-answer p { padding: 0 22px 20px; }
.faq-item.open .faq-icon { transform: rotate(180deg); }

.final-cta {
  background: linear-gradient(180deg, #eff6ff 0%, #ffffff 100%);
  padding-bottom: 84px;
}
.final-cta-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 30px;
  padding: 36px 28px;
  box-shadow: var(--shadow-lg);
}
.heart-beat {
  font-size: 2rem;
  margin-bottom: 10px;
  animation: heartBeat 1.9s ease-in-out infinite;
}
@keyframes heartBeat {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.12); }
  28% { transform: scale(1); }
  42% { transform: scale(1.12); }
  70% { transform: scale(1); }
}
.final-cta-inner h2 {
  color: var(--gray-900);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-bottom: 10px;
}
.final-cta-inner p { color: var(--gray-600); margin-bottom: 20px; }
.secure-note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-weight: 700;
  margin-top: 16px;
}

.site-footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.82);
  padding: 26px 0 96px;
}
.footer-inner { display: grid; gap: 8px; justify-items: center; text-align: center; }
.footer-logo { font-weight: 900; color: var(--white); }
.footer-copy { font-size: .92rem; }

.mobile-donate-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--gray-200);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
}
.mobile-donate-btn {
  display: block;
  width: min(100%, 480px);
  margin: 0 auto;
  text-align: center;
  background: var(--blue-600);
  color: var(--white);
  border-radius: 999px;
  font-weight: 900;
  padding: 15px 18px;
  box-shadow: var(--shadow-md);
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 98px;
  transform: translateX(-50%) translateY(18px);
  background: rgb(37, 99, 235);
  color: var(--white);
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 0.98rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  z-index: 130;
  white-space: nowrap;
  max-width: calc(100vw - 24px);
  overflow: hidden;
  text-overflow: ellipsis;
  box-shadow: 0 12px 30px rgba(37, 99, 235, .28);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .hero-inner,
  .story-grid,
  .coverage-grid,
  .donate-steps { grid-template-columns: 1fr; }
  .hero-inner { gap: 30px; }
  .hero-photo-wrap { display: flex; justify-content: center; }
  .hero-text { text-align: center; }
  .hero-actions { justify-content: center; }
  .progress-card { padding: 24px 20px 18px; }
  .stat-right, .stat-center { text-align: left; }
}

@media (max-width: 640px) {
  body { padding-bottom: 92px; }
  .container { padding: 0 16px; }
  .header-inner { min-height: 64px; }
  .logo-text { font-size: .96rem; }
  .hero { padding-top: 34px; }
  .hero-title { font-size: clamp(2.1rem, 9vw, 3rem); }
  .hero-subtitle { font-size: 1rem; }
  .hero-photo-card { max-width: 360px; margin: 0 auto; }
  .hero-photo { height: 340px; }
  .section-heading h2 { font-size: clamp(1.65rem, 8vw, 2.25rem); }
  .story-section,
  .coverage-section,
  .donate-section,
  .share-section,
  .faq-section,
  .final-cta { padding: 54px 0; }
  .story-card,
  .coverage-card,
  .share-card,
  .donate-main-card,
  .final-cta-inner { padding: 22px 18px; }
  .donation-amount-step { padding: 18px; }
  .donation-amount-options { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .selected-donation-chip { width: 100%; justify-content: center; }
  .copy-field { align-items: stretch; }
  .copy-field span { width: 100%; }
  .btn-copy { width: 100%; justify-content: center; }
  .share-actions .btn { width: 100%; }
  .toast { bottom: 92px; font-size: .88rem; }
}

@media (min-width: 901px) {
  .mobile-donate-bar { display: none; }
  body { padding-bottom: 0; }
  .site-footer { padding-bottom: 26px; }
  .toast { bottom: 24px; }
}


.no-copy-field { justify-content: flex-start; }
.no-copy-field span { width: 100%; }
