:root {
  --bg: #fffaf2;
  --bg-soft: #f7ead8;
  --paper: #fffdf8;
  --paper-strong: #ffffff;
  --ink: #28120f;
  --muted: #72564d;
  --line: rgba(83, 34, 25, 0.16);
  --brand: #9c2f25;
  --brand-2: #d9a445;
  --brand-3: #f2d37c;
  --dark: #3d1512;
  --green: #2f6f4f;
  --shadow: 0 24px 70px rgba(63, 21, 18, 0.16);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(217, 164, 69, .34), transparent 34rem),
    radial-gradient(circle at 80% 10%, rgba(156, 47, 37, .14), transparent 22rem),
    var(--bg);
  line-height: 1.55;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }

.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.narrow { max-width: 760px; }
.center { text-align: center; }
.section-pad { padding: 88px 0; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 100;
  background: var(--dark);
  color: white;
  padding: 12px 16px;
  border-radius: 999px;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(255, 250, 242, 0.82);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand), #5e1b16);
  color: #fff6dd;
  font-weight: 900;
  letter-spacing: -0.08em;
  box-shadow: 0 10px 26px rgba(156,47,37,.25);
}
.brand strong { display: block; font-size: 1rem; line-height: 1; }
.brand small { color: var(--muted); font-size: .78rem; }
.main-nav { display: flex; gap: 22px; color: var(--muted); font-weight: 700; font-size: .95rem; }
.main-nav a:hover { color: var(--brand); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 850;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  min-height: 48px;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--brand), #5a1813);
  color: white;
  box-shadow: 0 14px 30px rgba(156, 47, 37, .24);
}
.btn-ghost {
  color: var(--dark);
  background: rgba(255,255,255,.64);
  border: 1px solid var(--line);
}
.btn-secondary {
  color: var(--brand);
  background: #fff7e7;
  border: 1px solid rgba(156, 47, 37, .18);
}
.btn-light { background: white; color: var(--brand); }
.btn-small { padding: 10px 16px; min-height: 40px; font-size: .9rem; }
.btn-full { width: 100%; }
.hidden { display: none !important; }
.hidden-field { position: absolute; left: -10000px; }

.eyebrow {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand);
  text-transform: uppercase;
  font-size: .78rem;
  letter-spacing: .14em;
  font-weight: 900;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--brand-2);
  display: inline-block;
}
h1, h2, h3 { line-height: 1.04; margin: 0; letter-spacing: -0.045em; }
h1 { font-size: clamp(3rem, 7vw, 6.6rem); max-width: 820px; }
h2 { font-size: clamp(2rem, 4vw, 3.9rem); }
h3 { font-size: 1.35rem; }
p { color: var(--muted); }

.hero { padding-top: 72px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 450px);
  gap: 62px;
  align-items: center;
}
.hero-lead { font-size: clamp(1.1rem, 2vw, 1.35rem); max-width: 720px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.trust-row span {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.58);
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 750;
  font-size: .92rem;
}
.hero-art { position: relative; min-height: 620px; }
.poster-card {
  position: relative;
  width: min(92vw, 390px);
  margin: 0 auto;
  padding: 12px;
  border-radius: 34px;
  background: rgba(255,255,255,.64);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.poster-card::before {
  content: "";
  position: absolute;
  inset: -20px;
  z-index: -1;
  border-radius: 44px;
  background: linear-gradient(135deg, rgba(156,47,37,.26), rgba(217,164,69,.30));
  filter: blur(14px);
}
.poster-card img { border-radius: 26px; width: 100%; }
.floating-card {
  position: absolute;
  width: min(250px, 64vw);
  background: rgba(255, 253, 248, .94);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 16px;
  box-shadow: 0 18px 40px rgba(63, 21, 18, .14);
}
.floating-card strong { display: block; color: var(--dark); }
.floating-card span { color: var(--muted); font-size: .9rem; }
.floating-card-top { top: 28px; left: -24px; }
.floating-card-bottom { right: -10px; bottom: 70px; }

.trailer-section { background: linear-gradient(180deg, rgba(255,255,255,.3), rgba(247,234,216,.56)); }
.video-shell {
  margin-top: 36px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: #1f0c0a;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.58);
  aspect-ratio: 16 / 9;
  position: relative;
}
.video-shell iframe,
.video-shell .video-placeholder { position: absolute; inset: 0; width: 100%; height: 100%; }
.video-shell iframe { border: 0; }
.video-placeholder { display: grid; place-items: center; color: white; isolation: isolate; }
.video-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(32,12,10,.1), rgba(32,12,10,.82));
  z-index: -1;
}
.video-placeholder img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.play-badge {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  padding-left: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: var(--brand);
  font-size: 2.1rem;
  box-shadow: 0 20px 60px rgba(0,0,0,.28);
}
.video-message {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}
.video-message strong { color: white; font-size: 1.1rem; }
.video-message span { color: rgba(255,255,255,.82); }
code { background: rgba(255,255,255,.16); padding: 2px 5px; border-radius: 6px; }

.story-band { padding: 28px 0; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1fr;
  gap: 18px;
  align-items: stretch;
}
.story-card { border-radius: var(--radius-xl); overflow: hidden; min-height: 390px; }
.story-card.light,
.story-card.dark { padding: 34px; display: flex; flex-direction: column; justify-content: end; }
.story-card.light { background: var(--paper-strong); border: 1px solid var(--line); }
.story-card.dark { background: linear-gradient(145deg, var(--dark), #6c2019); color: white; }
.story-card.dark p { color: rgba(255,255,255,.76); }
.image-card img { width: 100%; height: 100%; object-fit: cover; }

.support-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 54px;
  align-items: start;
}
.impact-list { display: grid; gap: 14px; }
.impact-list article {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 6px 18px;
  background: rgba(255,255,255,.62);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.impact-list article span {
  grid-row: span 2;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #fff0d0;
  color: var(--brand);
  font-weight: 950;
}
.impact-list strong { font-size: 1.1rem; }
.impact-list p { margin: 0; }

.donation-section { background: linear-gradient(180deg, rgba(61,21,18,.94), rgba(83,26,20,.98)); color: white; }
.donation-section p,
.donation-section .eyebrow { color: rgba(255,255,255,.78); }
.donation-section .eyebrow::before { background: var(--brand-3); }
.donation-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 48px;
  align-items: start;
}
.certificate-preview {
  margin-top: 34px;
  background: #fffaf0;
  color: var(--dark);
  border-radius: var(--radius-xl);
  padding: 28px;
  border: 1px solid rgba(255,255,255,.58);
  box-shadow: 0 24px 80px rgba(0,0,0,.2);
  position: relative;
  overflow: hidden;
}
.certificate-preview::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(156,47,37,.2);
  border-radius: 24px;
  pointer-events: none;
}
.certificate-preview p { color: var(--muted); }
.certificate-topline { color: var(--brand); text-transform: uppercase; letter-spacing: .16em; font-weight: 900; font-size: .74rem; }
.certificate-preview small { color: var(--green); font-weight: 800; }
.share-mini {
  margin-top: 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,.07);
}
.share-mini strong { display: block; }
.share-mini span { color: rgba(255,255,255,.78); }
.donation-panel {
  background: var(--paper-strong);
  color: var(--ink);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: 0 24px 90px rgba(0,0,0,.28);
}
.donation-panel p { color: var(--muted); }
fieldset { border: 0; padding: 0; margin: 0 0 28px; }
legend { font-weight: 950; margin: 0 0 16px; font-size: 1.08rem; }
.amount-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 14px; }
.amount-btn {
  border: 1px solid rgba(156,47,37,.18);
  background: #fff8eb;
  color: var(--dark);
  border-radius: 18px;
  padding: 15px 12px;
  font-weight: 950;
  transition: transform .18s ease, background .18s ease, color .18s ease;
}
.amount-btn:hover { transform: translateY(-2px); }
.amount-btn.active { background: var(--brand); color: white; border-color: transparent; }
.field { display: grid; gap: 7px; margin-bottom: 14px; }
.field span { font-weight: 850; color: #51312b; }
.field small { color: var(--muted); font-weight: 650; }
input, textarea {
  width: 100%;
  border: 1px solid rgba(83,34,25,.2);
  border-radius: 16px;
  padding: 14px 15px;
  background: #fffdf8;
  color: var(--ink);
  outline: none;
}
input:focus, textarea:focus { border-color: var(--brand-2); box-shadow: 0 0 0 4px rgba(217,164,69,.18); }
textarea { resize: vertical; }
.money-input { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 8px; }
.money-input span { color: var(--muted); }
.check-row { display: flex; gap: 10px; align-items: flex-start; color: var(--muted); font-size: .92rem; }
.check-row input { width: auto; margin-top: 5px; }
.method-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f7ead8;
  padding: 6px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.method-tab {
  border: 0;
  border-radius: 999px;
  background: transparent;
  padding: 12px;
  font-weight: 950;
  color: var(--muted);
}
.method-tab.active { background: white; color: var(--brand); box-shadow: 0 8px 18px rgba(63,21,18,.09); }
.method-panel { display: none; }
.method-panel.active { display: block; }
.bank-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(156,47,37,.18);
  background: #fffaf0;
  border-radius: var(--radius-lg);
  margin-bottom: 14px;
}
.bank-card div { display: grid; gap: 3px; }
.bank-card small { color: var(--muted); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; }
.bank-card strong { overflow-wrap: anywhere; }
.copy-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 12px; }
.tiny-note { font-size: .86rem; margin-bottom: 0; }
.paypal-status {
  border-radius: 16px;
  padding: 14px;
  background: #fff7e7;
  color: var(--muted);
  border: 1px solid rgba(156,47,37,.14);
  margin-bottom: 14px;
}
.paypal-buttons { min-height: 46px; }

.allies-section { background: #fffdf8; }
.logo-grid {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.logo-grid img {
  width: 100%;
  height: 92px;
  object-fit: contain;
  padding: 18px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.faq-grid {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 50px;
}
.faq-list { display: grid; gap: 12px; }
details {
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
}
summary { cursor: pointer; font-weight: 950; }
details p { margin-bottom: 0; }
.final-cta { padding: 38px 0 80px; }
.final-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: linear-gradient(135deg, var(--brand), var(--dark));
  color: white;
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}
.final-card::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  right: -80px;
  top: -120px;
  background: rgba(255,255,255,.11);
  border-radius: 999px;
}
.final-card p { color: rgba(255,255,255,.78); }
.final-card > * { position: relative; z-index: 1; }
.site-footer { padding: 30px 0; background: var(--dark); color: white; }
.footer-grid { display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.site-footer p { color: rgba(255,255,255,.62); margin: 6px 0 0; font-size: .9rem; }
.footer-links { display: flex; gap: 18px; color: rgba(255,255,255,.78); font-weight: 750; }
.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(120%);
  background: var(--dark);
  color: white;
  border-radius: 999px;
  padding: 13px 18px;
  box-shadow: 0 16px 46px rgba(0,0,0,.22);
  z-index: 100;
  transition: transform .25s ease;
}
.toast.show { transform: translateX(-50%) translateY(0); }

.thanks-page { min-height: 100vh; display: grid; place-items: center; padding: 40px 0; }
.thanks-card {
  width: min(820px, calc(100% - 32px));
  background: white;
  border-radius: var(--radius-xl);
  padding: clamp(28px, 6vw, 56px);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.thanks-mark {
  width: 70px;
  height: 70px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: #fff0d0;
  color: var(--brand);
  font-size: 2rem;
  margin-bottom: 22px;
}
.thanks-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.thanks-summary {
  background: #fffaf0;
  border: 1px solid rgba(156,47,37,.14);
  border-radius: 20px;
  padding: 18px;
  margin-top: 22px;
}
.thanks-summary div { display: flex; justify-content: space-between; gap: 18px; padding: 8px 0; border-bottom: 1px solid rgba(83,34,25,.09); }
.thanks-summary div:last-child { border-bottom: 0; }
.thanks-summary span { color: var(--muted); }
.thanks-summary strong { text-align: right; }

@media (max-width: 980px) {
  .main-nav { display: none; }
  .hero-grid, .support-grid, .donation-grid, .faq-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: auto; }
  .floating-card { position: relative; inset: auto; margin: 14px auto 0; width: min(100%, 390px); }
  .poster-card { width: min(100%, 370px); }
  .story-grid { grid-template-columns: 1fr; }
  .story-card { min-height: 300px; }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .container { width: min(100% - 24px, var(--max)); }
  .section-pad { padding: 62px 0; }
  .header-inner { min-height: 66px; }
  .header-inner .btn { display: none; }
  .brand-mark { width: 40px; height: 40px; }
  h1 { font-size: clamp(2.55rem, 14vw, 4rem); }
  .hero { padding-top: 46px; }
  .hero-grid { gap: 34px; }
  .trust-row { gap: 8px; }
  .trust-row span { font-size: .84rem; padding: 9px 11px; }
  .video-message { position: static; padding: 22px; flex-direction: column; align-items: center; text-align: center; }
  .play-badge { width: 72px; height: 72px; font-size: 1.6rem; }
  .amount-grid { grid-template-columns: 1fr 1fr; }
  .donation-panel { padding: 20px; border-radius: 24px; }
  .copy-row { grid-template-columns: 1fr; }
  .logo-grid { grid-template-columns: 1fr 1fr; }
  .final-card, .footer-grid { flex-direction: column; align-items: flex-start; }
  .thanks-summary div { display: grid; gap: 2px; }
  .thanks-summary strong { text-align: left; }
}
