/* ==========================================================================
   Lindel Keaton Ministries — Stylesheet
   Design concept: "A light for the journey, a harbor for the weary."
   A lighthouse on the New Jersey shore ties the two missions together —
   the Gospel as light, and refuge for the needy and displaced.
   ========================================================================== */

:root {
  /* Palette */
  --mist: #F5F7F6;
  --mist-deep: #ECEFED;
  --white: #FFFFFF;
  --sea-ink: #10233B;
  --sea-ink-soft: #3C4C63;
  --lamp: #D6863B;
  --lamp-dark: #B96F2A;
  --lamp-text: #96561A;
  --lamp-soft: #F1D9B8;
  --oxide: #A8452A;
  --oxide-soft: #EAD3CB;
  --line: #DCE2DF;
  --ink: #1C2530;
  --ink-mute: #5B6570;

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container: 1160px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 20px 40px -20px rgba(16, 35, 59, 0.18);
  --shadow-sm: 0 8px 20px -12px rgba(16, 35, 59, 0.16);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, blockquote, figure, ul { margin: 0; }
ul { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-display); color: var(--sea-ink); font-weight: 600; line-height: 1.15; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

/* ---------- Accessibility ---------- */
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--sea-ink); color: var(--white);
  padding: 10px 18px; border-radius: var(--radius-sm);
  z-index: 1000; transition: top 0.2s ease;
}
.skip-link:focus { top: 12px; }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2.5px solid var(--lamp);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--lamp); color: var(--sea-ink); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--lamp-dark); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--sea-ink); border: 1.5px solid var(--sea-ink); }
.btn-outline:hover { background: var(--sea-ink); color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 15px 32px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: 0.88rem; }
.btn-block { width: 100%; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245, 247, 246, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 4px 24px -12px rgba(16,35,59,0.12); }

.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 28px; gap: 24px; }

.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark { width: 38px; height: 38px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; font-family: var(--font-display); }
.logo-text strong { font-size: 1rem; font-weight: 700; color: var(--sea-ink); }
.logo-text em { font-style: normal; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lamp-text); }

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a { font-size: 0.94rem; font-weight: 500; color: var(--sea-ink-soft); position: relative; padding: 4px 0; }
.main-nav a:hover { color: var(--sea-ink); }
.main-nav a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--lamp); transition: right 0.2s ease;
}
.main-nav a:hover::after { right: 0; }

.header-actions { display: flex; align-items: center; gap: 16px; }

.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 30px; height: 30px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--sea-ink); transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  padding: 76px 0 40px;
  background: linear-gradient(180deg, #FDF9F1 0%, var(--mist) 65%);
  overflow: hidden;
}
.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }

.eyebrow {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--lamp-text); margin-bottom: 16px;
}
.hero-copy h1 { font-size: clamp(2.3rem, 4.2vw, 3.4rem); letter-spacing: -0.01em; }
.text-lamp { color: var(--lamp-text); font-style: italic; }
.text-oxide { color: var(--oxide); }

.hero-lead { margin-top: 22px; font-size: 1.12rem; color: var(--ink-mute); max-width: 46ch; }
.hero-actions { display: flex; gap: 16px; margin-top: 32px; flex-wrap: wrap; }

.hero-verse {
  margin-top: 40px; padding-left: 20px; border-left: 2px solid var(--lamp);
  font-family: var(--font-display); font-style: italic; font-size: 1.02rem;
  color: var(--sea-ink-soft); max-width: 42ch;
}
.hero-verse cite { display: block; margin-top: 8px; font-style: normal; font-size: 0.82rem; letter-spacing: 0.04em; color: var(--ink-mute); }

.hero-illustration { position: relative; aspect-ratio: 5 / 4; width: 100%; }
.hero-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.beam {
  position: absolute; left: 76.4%; top: 24.75%;
  width: 46%; height: 34%;
  background: linear-gradient(to right, rgba(214, 134, 59, 0.5), rgba(214, 134, 59, 0));
  clip-path: polygon(0 50%, 100% 6%, 100% 94%);
  transform-origin: left center;
  transform: translateY(-50%) rotate(0deg);
  animation: beam-sweep 8s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes beam-sweep {
  0% { transform: translateY(-50%) rotate(-16deg); }
  100% { transform: translateY(-50%) rotate(34deg); }
}

/* ==========================================================================
   Sections (shared)
   ========================================================================== */
.section { padding: 96px 0; }
.section--alt { background: var(--mist-deep); }

.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 { font-size: clamp(1.9rem, 3vw, 2.5rem); }
.section-lead { margin-top: 16px; font-size: 1.05rem; color: var(--ink-mute); }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ---------- Pillars (About) ---------- */
.pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.pillar {
  background: var(--white); border-radius: var(--radius); padding: 40px;
  border-top: 3px solid var(--line);
}
.pillar-proclaim { border-top-color: var(--lamp); }
.pillar-provide { border-top-color: var(--oxide); }
.pillar-tag { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 10px; }
.pillar h3 { font-size: 1.4rem; margin-bottom: 14px; }
.pillar p { color: var(--ink-mute); }
.verse-tag {
  margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line);
  font-family: var(--font-display); font-style: italic; font-size: 0.95rem; color: var(--sea-ink-soft) !important;
}
.verse-tag cite { display: block; margin-top: 6px; font-style: normal; font-size: 0.78rem; color: var(--ink-mute); }

/* ---------- Programs ---------- */
.programs-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.program-col-head { font-size: 1.1rem; letter-spacing: 0.03em; margin-bottom: 24px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.program-list { display: flex; flex-direction: column; gap: 26px; }
.program-item { display: flex; gap: 16px; align-items: flex-start; }
.program-marker { width: 20px; height: 20px; flex-shrink: 0; margin-top: 4px; }
.marker-lamp { color: var(--lamp-text); }
.marker-oxide { color: var(--oxide); }
.program-item h4 { font-size: 1.04rem; margin-bottom: 4px; font-weight: 600; font-family: var(--font-body); color: var(--sea-ink); }
.program-item p { font-size: 0.94rem; color: var(--ink-mute); }

/* ---------- Impact ---------- */
.impact-line {
  display: flex; justify-content: space-between; align-items: flex-start;
  position: relative; margin-top: 24px; padding-top: 34px;
}
.impact-line::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, var(--lamp) 15%, var(--lamp) 85%, transparent);
  opacity: 0.55;
}
.stat { position: relative; text-align: center; flex: 1; padding: 0 12px; }
.stat::before {
  content: ''; position: absolute; top: -38px; left: 50%; transform: translateX(-50%);
  width: 9px; height: 9px; border-radius: 50%; background: var(--lamp);
  box-shadow: 0 0 0 4px var(--mist), 0 0 0 5px var(--line);
}
.stat-number { display: block; font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 600; color: var(--sea-ink); }
.stat-label { display: block; margin-top: 6px; font-size: 0.9rem; color: var(--ink-mute); }

/* ---------- Accreditations ---------- */
.badges-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 50px; }
.badge-card {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px;
  padding: 30px 20px; background: var(--ink-mute); border-radius: var(--radius); border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.badge-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: transparent; }
.badge-mark { width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; }
.badge-mark img { width: 100%; height: 50%; }
.badge-mark-1, .badge-mark-3 { color: var(--lamp-text); }
.badge-mark-2, .badge-mark-4 { color: var(--oxide); }
.badge-org { font-family: var(--font-display); font-weight: 600; font-size: 1.02rem; color: var(--sea-ink); }
.badge-cred { font-size: 0.84rem; color: var(--ink-mute); }

/* ---------- Get Involved ---------- */
.involved-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.involved-card { background: var(--white); border-radius: var(--radius); padding: 36px; border-top: 3px solid var(--line); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.involved-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.card-lamp { border-top-color: var(--lamp); }
.card-oxide { border-top-color: var(--oxide); }
.card-ink { border-top-color: var(--sea-ink); }
.involved-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.involved-card p { color: var(--ink-mute); margin-bottom: 20px; min-height: 66px; }
.card-link { display: inline-flex; align-items: center; gap: 6px; font-weight: 600; color: var(--sea-ink); }
.card-link .chev { width: 15px; height: 15px; transform: rotate(-90deg); transition: transform 0.2s ease; }
.card-link:hover .chev { transform: rotate(-90deg) translateX(3px); }

/* ---------- Donate ---------- */
.donate-widget { max-width: 560px; margin: 0 auto; background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-sm); }
.freq-toggle { display: flex; background: var(--mist-deep); border-radius: 999px; padding: 5px; margin-bottom: 24px; }
.freq-btn { flex: 1; padding: 11px; border-radius: 999px; font-weight: 600; font-size: 0.92rem; color: var(--ink-mute); transition: background 0.2s ease, color 0.2s ease; }
.freq-btn.active { background: var(--sea-ink); color: var(--white); }

.amount-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 20px; }
.amount-btn { padding: 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--line); font-weight: 600; color: var(--sea-ink); transition: border-color 0.2s ease, background 0.2s ease; }
.amount-btn.active { border-color: var(--lamp); background: var(--lamp-soft); }
.amount-custom { display: flex; align-items: center; gap: 6px; padding: 0 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--line); }
.amount-custom span { color: var(--ink-mute); font-weight: 600; }
.amount-custom input { width: 100%; border: none; padding: 14px 0; background: transparent; }
.amount-custom input:focus-visible { outline: none; }

.donate-summary { text-align: center; font-weight: 600; color: var(--sea-ink); margin-bottom: 20px; font-family: var(--font-display); font-size: 1.1rem; }
.donate-note { margin-top: 16px; font-size: 0.85rem; color: var(--ink-mute); text-align: center; transition: color 0.2s ease; }
.donate-note.show { color: var(--lamp-text); font-weight: 600; }

/* ---------- Stories ---------- */
.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.story-card { background: var(--white); border-radius: var(--radius); padding: 32px; }
.story-card::before {
  content: '\201C'; display: block; font-family: var(--font-display); font-size: 2.6rem;
  color: var(--lamp); line-height: 1; margin-bottom: 8px;
}
.story-card p { font-size: 1rem; color: var(--ink); margin-bottom: 18px; }
.story-card cite { font-style: normal; font-size: 0.85rem; font-weight: 600; color: var(--ink-mute); }

/* ---------- CTA Banner ---------- */
.cta-banner { padding: 90px 0; text-align: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta-inner h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
.cta-inner p { margin-top: 14px; font-size: 1.08rem; color: var(--ink-mute); }
.cta-actions { display: flex; justify-content: center; gap: 16px; margin-top: 30px; flex-wrap: wrap; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 22px 4px; text-align: left; font-family: var(--font-display); font-size: 1.08rem; font-weight: 600; color: var(--sea-ink);
}
.faq-item.active .faq-question { color: var(--lamp-text); }
.faq-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--ink-mute); transition: transform 0.25s ease; }
.faq-item.active .faq-icon { transform: rotate(180deg); color: var(--lamp-text); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p { padding: 0 4px 22px; color: var(--ink-mute); max-width: 62ch; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.info-row { display: flex; align-items: center; gap: 14px; font-size: 0.98rem; }
.info-icon { width: 20px; height: 20px; flex-shrink: 0; color: var(--lamp-text); }
.info-row a:hover { color: var(--lamp-text); }

.contact-form { background: var(--white); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 7px; color: var(--sea-ink-soft); }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--line);
  background: var(--mist); transition: border-color 0.2s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--lamp); outline: none; }
.form-group textarea { resize: vertical; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--sea-ink); color: rgba(245, 247, 246, 0.72); position: relative; }
.footer-top {
  height: 2px;
  background: linear-gradient(to right, transparent, var(--lamp) 20%, var(--lamp) 80%, transparent);
  opacity: 0.5;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding: 72px 28px 56px; }
.footer-brand p { margin-top: 16px; font-size: 0.94rem; max-width: 32ch; }
.footer-brand .logo-text strong { color: var(--white); }
.footer-brand .logo-text em { color: var(--lamp); }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.08); transition: background 0.2s ease; }
.footer-social a:hover { background: var(--lamp); }
.footer-social svg { width: 17px; height: 17px; color: var(--white); }

.footer-col h4 { color: var(--white); font-size: 0.98rem; margin-bottom: 18px; font-family: var(--font-body); font-weight: 600; }
.footer-col a { display: block; margin-bottom: 12px; font-size: 0.92rem; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--lamp); }
.footer-newsletter p { font-size: 0.9rem; margin-bottom: 16px; }
.footer-newsletter form { display: flex; gap: 8px; }
.footer-newsletter input { flex: 1; padding: 10px 12px; border-radius: var(--radius-sm); border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); color: var(--white); min-width: 0; }
.footer-newsletter input::placeholder { color: rgba(245,247,246,0.5); }
.footer-newsletter button { padding: 10px 16px; border-radius: var(--radius-sm); background: var(--lamp); color: var(--sea-ink); font-weight: 600; font-size: 0.88rem; white-space: nowrap; }
.newsletter-note { margin-top: 10px; font-size: 0.85rem; color: var(--lamp); min-height: 1em; }

.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: space-between; align-items: center;
  padding: 22px 28px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.84rem;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a:hover { color: var(--lamp); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-illustration { max-width: 420px; margin: 0 auto; order: -1; }
  .pillars, .programs-grid, .contact-grid { grid-template-columns: 1fr; }
  .involved-grid, .stories-grid { grid-template-columns: 1fr; }
  .badges-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); padding: 20px 28px 28px; gap: 18px; box-shadow: var(--shadow-sm); border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .hero { padding-top: 56px; }
  .impact-line { flex-direction: column; gap: 34px; }
  .impact-line::before { display: none; }
  .stat::before { top: -18px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; padding: 56px 28px 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .hero-actions, .cta-actions { flex-direction: column; }
}

/* ==========================================================================
   Donate Page (donate.html)
   ========================================================================== */

.give-intro {
  padding: 56px 0 24px;
  background: linear-gradient(180deg, #FDF9F1 0%, var(--mist) 100%);
}
.back-link {
  display: inline-block; margin-bottom: 20px; font-size: 0.9rem; font-weight: 600;
  color: var(--ink-mute); transition: color 0.2s ease;
}
.back-link:hover { color: var(--sea-ink); }
.give-intro h1 { font-size: clamp(2rem, 3.6vw, 2.8rem); }
.give-intro .hero-lead { margin-top: 16px; max-width: 58ch; }

.give-section { padding-top: 48px; }
.give-layout { display: grid; grid-template-columns: 1.55fr 1fr; gap: 32px; align-items: start; }

/* ---------- Form card ---------- */
.give-form-card { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-sm); }
.form-section { padding-bottom: 30px; margin-bottom: 30px; border-bottom: 1px solid var(--line); }
.form-section:last-of-type { border-bottom: none; margin-bottom: 24px; padding-bottom: 0; }
.form-section-title { font-size: 1.15rem; margin-bottom: 20px; }
.optional { font-weight: 400; color: var(--ink-mute); text-transform: none; letter-spacing: 0; font-size: 0.85em; }

.amount-grid-6 { grid-template-columns: repeat(3, 1fr); }
.amount-grid-6 .amount-custom { grid-column: span 1; }

/* ---------- Payment method selector ---------- */
.payment-methods { display: flex; gap: 14px; margin-bottom: 16px; }
.payment-method {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 20px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--line);
  color: var(--sea-ink-soft); font-weight: 600; font-size: 0.92rem;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.payment-method:hover { border-color: var(--sea-ink-soft); }
.payment-method.active { border-color: var(--lamp); background: var(--lamp-soft); color: var(--sea-ink); }
.pm-icon { width: 24px; height: 24px; }
.payment-note { font-size: 0.88rem; color: var(--ink-mute); text-align: center; }

/* ---------- Bank transfer sidebar ---------- */
.bank-card {
  background: var(--white); border-radius: var(--radius); padding: 32px;
  border-top: 3px solid var(--oxide); box-shadow: var(--shadow-sm);
  position: sticky; top: 96px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.bank-card.highlight { border-top-color: var(--lamp); box-shadow: 0 0 0 3px var(--lamp-soft), var(--shadow); }

.sample-badge {
  display: inline-block; background: var(--oxide); color: var(--white);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px; margin-bottom: 16px;
}
.bank-card h2 {
  display: flex; align-items: center; gap: 10px; font-size: 1.25rem; margin-bottom: 12px;
}
.bank-card-icon { width: 22px; height: 22px; color: var(--oxide); flex-shrink: 0; }
.bank-card-lead { font-size: 0.92rem; color: var(--ink-mute); margin-bottom: 24px; }

.bank-rows { display: flex; flex-direction: column; }
.bank-row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.bank-row:last-child { border-bottom: none; }
.bank-label { display: block; font-size: 0.78rem; color: var(--ink-mute); margin-bottom: 3px; }
.bank-value {
  display: block; font-family: 'SFMono-Regular', Consolas, 'Courier New', monospace;
  font-size: 0.98rem; font-weight: 600; color: var(--sea-ink); letter-spacing: 0.02em;
}
.bank-copy-btn {
  width: 34px; height: 34px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); color: var(--ink-mute); background: var(--mist);
  transition: background 0.2s ease, color 0.2s ease;
}
.bank-copy-btn svg { width: 16px; height: 16px; }
.bank-copy-btn:hover { background: var(--mist-deep); color: var(--sea-ink); }
.bank-copy-btn.copied { background: var(--lamp-soft); color: var(--lamp-text); }

.bank-fineprint { margin-top: 22px; font-size: 0.82rem; color: var(--ink-mute); line-height: 1.6; }

/* ---------- Trust row ---------- */
.trust-row {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
  margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--line);
}
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--ink-mute); font-size: 0.92rem; font-weight: 500; }
.trust-item svg { width: 20px; height: 20px; color: var(--lamp-text); flex-shrink: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .give-layout { grid-template-columns: 1fr; }
  .bank-card { position: static; }
}
@media (max-width: 640px) {
  .give-form-card, .bank-card { padding: 26px; }
  .amount-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .payment-methods { flex-direction: column; }
  .trust-row { gap: 22px 32px; }
}