:root {
  --wine: #6f2432;
  --wine-dark: #43151f;
  --coral: #d96e62;
  --gold: #d6a94f;
  --cream: #fff8ef;
  --cream-dark: #f6eadc;
  --blush: #f4dedd;
  --ink: #34292c;
  --muted: #736568;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(77, 25, 36, .13);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(15px);
  background: rgba(255, 248, 239, .92);
  border-bottom: 1px solid rgba(111, 36, 50, .08);
}
.nav-wrap { height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand img { width: 250px; max-height: 68px; object-fit: contain; }
.nav { display: flex; gap: 26px; align-items: center; font-size: 14px; font-weight: 700; }
.nav a { text-decoration: none; }
.nav a:not(.btn):hover { color: var(--coral); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 15px 24px;
  background: linear-gradient(135deg, var(--wine), var(--coral));
  color: white;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(111,36,50,.2);
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(111,36,50,.26); }
.btn-small { padding: 10px 18px; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 88px;
  background:
    radial-gradient(circle at 85% 25%, rgba(217, 110, 98, .16), transparent 28%),
    radial-gradient(circle at 20% 85%, rgba(214, 169, 79, .15), transparent 26%),
    linear-gradient(135deg, #fffaf3 0%, #f8eadf 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 70px; align-items: center; }
.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 900;
  color: var(--coral);
}
h1, h2, h3 { line-height: 1.1; margin-top: 0; }
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 82px);
  margin-bottom: 24px;
  color: var(--wine-dark);
  letter-spacing: -.04em;
}
h1 span { color: var(--coral); font-style: italic; }
.hero-lead { font-size: 20px; max-width: 720px; color: #5e5053; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.text-link { font-weight: 800; color: var(--wine); text-decoration: none; }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.trust-row span {
  padding: 8px 13px;
  border: 1px solid rgba(111,36,50,.13);
  background: rgba(255,255,255,.55);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 750;
  color: var(--wine);
}
.hero-card {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(111,36,50,.09);
  border-radius: 36px;
  padding: 34px;
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
.hero-card img { width: min(390px, 100%); margin: 0 auto 18px; }
.quote { text-align: center; color: var(--wine); font-family: Georgia, serif; font-size: 22px; }

.cause-strip { background: var(--wine-dark); color: white; padding: 18px 0; }
.cause-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px 34px; font-weight: 800; font-size: 14px; }

.section { padding: 92px 0; }
.section-soft { background: #f6e9df; }
.section-heading { max-width: 760px; margin: 0 auto 48px; text-align: center; }
.section-heading h2, .why-grid h2, .form-copy h2, .story h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--wine-dark);
  font-size: clamp(36px, 5vw, 54px);
  margin-bottom: 18px;
  letter-spacing: -.03em;
}
.section-heading p { color: var(--muted); font-size: 18px; }

.steps-grid, .options-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step-card, .option-card {
  background: white;
  border: 1px solid rgba(111,36,50,.08);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 14px 38px rgba(65, 22, 31, .07);
}
.step-number {
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--blush);
  color: var(--wine);
  font-weight: 900;
  margin-bottom: 20px;
}
.step-card h3, .option-card h3 { color: var(--wine); font-size: 23px; margin-bottom: 12px; }
.step-card p, .option-card p { color: var(--muted); margin-bottom: 0; }

.option-card { position: relative; overflow: hidden; }
.option-card.featured { background: linear-gradient(145deg, var(--wine-dark), var(--wine)); color: white; }
.option-card.featured h3, .option-card.featured p { color: white; }
.option-icon { font-size: 45px; margin-bottom: 14px; }
.option-tag {
  display: inline-block; margin-top: 20px; padding: 7px 11px;
  border-radius: 999px; background: var(--cream-dark); color: var(--wine);
  font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: .08em;
}
.option-card.featured .option-tag { background: var(--gold); color: var(--wine-dark); }
.fine-note { max-width: 850px; margin: 32px auto 0; text-align: center; color: var(--muted); font-size: 13px; }

.why-grid, .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.big-copy { font-size: 20px; color: #58494c; }
.benefit-list { display: grid; gap: 15px; }
.benefit {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; border-radius: 20px; background: white;
  border: 1px solid rgba(111,36,50,.08);
}
.benefit > span {
  flex: 0 0 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; background: var(--blush); color: var(--wine); font-weight: 950;
}
.benefit strong, .benefit small { display: block; }
.benefit strong { color: var(--wine); margin-bottom: 4px; }
.benefit small { color: var(--muted); font-size: 14px; }

.story {
  padding: 78px 0;
  color: white;
  text-align: center;
  background: linear-gradient(135deg, var(--wine-dark), #8b3442);
}
.story-inner { max-width: 820px; }
.story h2 { color: white; }
.story p { font-size: 20px; opacity: .9; }
.heart-mark { font-size: 42px; color: #f3a58e; }

.form-section { background: #fffaf4; }
.form-copy { position: sticky; top: 120px; }
.disclosure-card {
  margin-top: 28px;
  padding: 20px;
  border-left: 4px solid var(--gold);
  border-radius: 0 16px 16px 0;
  background: #f8edd9;
  color: #594849;
}
.disclosure-card p { margin-bottom: 0; }

.lead-form {
  background: white;
  padding: 34px;
  border-radius: 30px;
  border: 1px solid rgba(111,36,50,.08);
  box-shadow: var(--shadow);
}
.lead-form label { display: block; font-weight: 800; color: var(--wine-dark); font-size: 14px; margin-bottom: 18px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
input, textarea, select {
  width: 100%;
  margin-top: 7px;
  border: 1px solid #dfcfca;
  border-radius: 13px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: #fffdfb;
  outline: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(217,110,98,.12);
}
textarea { resize: vertical; }
.submit-btn { width: 100%; margin-top: 5px; font-size: 16px; }
.privacy-note { margin: 12px 0 0; color: var(--muted); font-size: 12px; text-align: center; }
.hidden {
  position: absolute !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  height: 1px !important;
  width: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
}

.footer { background: #2d1118; color: #f7e9e4; padding: 46px 0; text-align: center; }
.footer-inner img { width: 270px; margin: 0 auto 14px; filter: brightness(1.05); }
.footer p { margin: 6px 0; }
.copyright { opacity: .65; font-size: 13px; }

@media (max-width: 900px) {
  .nav a:not(.btn) { display: none; }
  .brand img { width: 210px; }
  .hero-grid, .why-grid, .form-grid { grid-template-columns: 1fr; gap: 42px; }
  .hero { padding-top: 60px; }
  .hero-card { max-width: 520px; margin: 0 auto; }
  .steps-grid, .options-grid { grid-template-columns: 1fr; }
  .form-copy { position: static; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 26px, 1160px); }
  .nav-wrap { height: 72px; }
  .brand img { width: 175px; }
  .btn-small { padding: 9px 13px; font-size: 12px; }
  .hero { padding: 44px 0 54px; }
  h1 { font-size: 48px; }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-card { padding: 23px; border-radius: 26px; }
  .section { padding: 66px 0; }
  .section-heading h2, .why-grid h2, .form-copy h2, .story h2 { font-size: 37px; }
  .form-row.two { grid-template-columns: 1fr; gap: 0; }
  .lead-form { padding: 23px; }
  .cause-list { gap: 10px 18px; }
}

.consent-note {
  margin: 4px 0 16px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fff8ef;
  color: var(--muted);
  font-size: 12px;
}
.consent-note a { color: var(--wine); font-weight: 800; }
.footer-links { display:flex; justify-content:center; flex-wrap:wrap; gap:18px; margin: 8px 0 14px; }
.footer-links a { color:#f7e9e4; font-size:13px; font-weight:700; text-decoration:none; opacity:.88; }
.footer-links a:hover { opacity:1; text-decoration:underline; }

.legal-page { padding: 70px 0; background: #fff8ef; }
.legal-card {
  max-width: 900px;
  background: white;
  padding: clamp(28px, 5vw, 58px);
  border-radius: 30px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(111,36,50,.08);
}
.legal-card h1 { font-size: clamp(44px, 6vw, 68px); margin-bottom: 8px; }
.legal-card h2 {
  margin-top: 34px;
  margin-bottom: 10px;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
}
.legal-card p { color: #5f5255; }
.legal-updated { color: var(--muted) !important; font-size: 14px; margin-bottom: 30px; }
.legal-back { margin-top: 38px; }

.submit-btn:disabled { opacity: .7; cursor: wait; transform: none; }

/* V4 expanded fundraiser gallery */
.expanded-options { grid-template-columns: repeat(3, 1fr); }
.expanded-options .option-card { display:flex; flex-direction:column; }
.expanded-options .option-card p { margin-bottom:20px; }
.expanded-options .option-tag { align-self:flex-start; margin-top:auto; }
.more-card { background:linear-gradient(145deg,#fffdf9,#f8ecdf); border:1px dashed rgba(111,36,50,.25); }
.help-card { justify-content:center; }
.card-link { display:inline-block; margin-top:18px; color:#fff; font-weight:850; text-decoration:none; }
.card-link:hover { text-decoration:underline; }
@media (max-width:900px){ .expanded-options{grid-template-columns:repeat(2,1fr);} }
@media (max-width:620px){ .expanded-options{grid-template-columns:1fr;} }
