:root {
  --cream: #fff7ed;
  --cream-2: #fff1df;
  --linen: #f9e7d2;
  --rose: #d95f76;
  --rose-dark: #a8324b;
  --plum: #402033;
  --plum-2: #5d2f49;
  --gold: #f4b955;
  --sage: #607d68;
  --ink: #2b2530;
  --muted: #6c5b63;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(64, 32, 51, 0.16);
  --radius: 28px;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 247, 237, 0.92);
  border-bottom: 1px solid rgba(64, 32, 51, 0.08);
  backdrop-filter: blur(18px);
}
.nav-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--rose), var(--plum));
  border-radius: 16px;
  font-size: 24px;
  box-shadow: 0 12px 24px rgba(168, 50, 75, 0.25);
}
.brand strong {
  display: block;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: -2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 800;
  color: var(--plum);
}
.nav-links a,
.nav-button,
.button { text-decoration: none; }
.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.nav-button,
.button.primary {
  background: var(--rose-dark);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(168, 50, 75, 0.25);
}
.button.secondary {
  background: var(--white);
  color: var(--plum);
  border: 1px solid rgba(64, 32, 51, 0.12);
}
.nav-button:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(64, 32, 51, 0.18);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 720px;
  display: flex;
  align-items: center;
}
.hero-bg-shape {
  position: absolute;
  border-radius: 999px;
  opacity: 0.28;
  filter: blur(2px);
}
.hero-bg-shape.one {
  width: 420px;
  height: 420px;
  background: var(--gold);
  top: -140px;
  right: -100px;
}
.hero-bg-shape.two {
  width: 360px;
  height: 360px;
  background: var(--rose);
  bottom: -120px;
  left: -120px;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--rose-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
h1, h2, h3 {
  margin: 0;
  color: var(--plum);
  line-height: 1.04;
}
h1, h2 {
  font-family: 'Playfair Display', Georgia, serif;
}
h1 {
  max-width: 720px;
  font-size: clamp(3.1rem, 8vw, 6.6rem);
  letter-spacing: -0.06em;
}
h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.045em;
}
h3 {
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}
.hero-text {
  max-width: 660px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 1.2rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(64, 32, 51, 0.08);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
}
.trust-strip strong { color: var(--rose-dark); }
.hero-card {
  display: flex;
  justify-content: center;
}
.stitched-card {
  width: min(440px, 100%);
  padding: 38px;
  background: var(--white);
  border: 2px dashed rgba(168, 50, 75, 0.34);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
.tote-icon {
  position: relative;
  width: 160px;
  height: 150px;
  margin: 0 auto 26px;
  border-radius: 22px 22px 34px 34px;
  background: linear-gradient(160deg, var(--linen), #fff9f0);
  border: 6px solid var(--plum-2);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.7);
}
.handle {
  position: absolute;
  width: 82px;
  height: 58px;
  border: 8px solid var(--plum-2);
  border-bottom: 0;
  border-radius: 44px 44px 0 0;
  top: -44px;
  left: 50%;
  transform: translateX(-50%);
}
.bag-heart {
  color: var(--rose-dark);
  font-size: 52px;
}
.stitched-card h2 {
  font-size: 2rem;
  text-align: center;
}
.stitched-card ul,
.checklist {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.stitched-card li,
.checklist li {
  position: relative;
  padding-left: 30px;
  margin: 12px 0;
  font-weight: 800;
}
.stitched-card li::before,
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--rose-dark);
  font-weight: 900;
}
.card-note {
  padding-top: 18px;
  color: var(--muted);
  border-top: 1px solid rgba(64, 32, 51, 0.1);
}

.soft-bg { background: var(--cream-2); }
.two-column {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: start;
}
.body-copy {
  color: var(--muted);
  font-size: 1.1rem;
}
.body-copy p:first-child { margin-top: 0; }
.center-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}
.center-heading p:not(.eyebrow) {
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1.1rem;
}
.help-grid,
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.help-card,
.shop-card,
.sponsor-card,
.contact-box {
  background: var(--white);
  border: 1px solid rgba(64, 32, 51, 0.09);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 12px 34px rgba(64, 32, 51, 0.08);
}
.help-card p,
.shop-card p,
.sponsor-card p,
.contact-box p { color: var(--muted); }
.help-card a:not(.button) {
  color: var(--rose-dark);
  font-weight: 900;
}
.icon-circle {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: var(--cream-2);
  color: var(--rose-dark);
  border-radius: 18px;
  font-weight: 900;
  font-size: 1.4rem;
}
.deep-bg {
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(244, 185, 85, 0.24), transparent 38%),
    linear-gradient(135deg, var(--plum), #22151e);
}
.deep-bg h2,
.deep-bg .eyebrow,
.light h2,
.light p,
.light .eyebrow { color: var(--white); }
.light .eyebrow { color: #ffd38b; }
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}
.sponsor-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,.95);
}
.sponsor-card.featured {
  transform: translateY(-12px);
  border: 2px solid var(--gold);
}
.sponsor-card.wide {
  grid-column: span 4;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
}
.badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 6px 10px;
  background: var(--gold);
  color: var(--plum);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
}
.amount {
  margin: 20px 0 8px;
  color: var(--rose-dark) !important;
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 900;
}
.card-button {
  width: 100%;
  margin-top: auto;
  background: var(--plum);
  color: var(--white);
}
.shop-grid { grid-template-columns: repeat(4, 1fr); }
.shop-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
}
.shop-card .button { margin-top: auto; }
.shop-card.walmart { border-top: 8px solid #f4b955; }
.shop-card.sams { border-top: 8px solid #3d7ea6; }
.shop-card.dollar { border-top: 8px solid #6da85f; }
.shop-card.hobby { border-top: 8px solid #a8324b; }
.split-card {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: center;
  padding: 44px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.volunteer-section {
  background: linear-gradient(180deg, var(--cream), var(--linen));
}
.volunteer-card {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 34px;
  align-items: center;
}
.volunteer-card p { color: var(--muted); font-size: 1.08rem; }
.contact-box .button {
  width: 100%;
  margin-top: 12px;
}
.footer {
  padding: 38px 0;
  color: rgba(255,255,255,.76);
  background: var(--plum);
}
.footer h2 { color: var(--white); font-size: 1.6rem; }
.footer p { margin: 8px 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-grid,
  .two-column,
  .split-card,
  .volunteer-card,
  .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .help-grid,
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .sponsor-grid { grid-template-columns: 1fr 1fr; }
  .sponsor-card.wide { grid-column: span 2; grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1120px); }
  .section-padding { padding: 62px 0; }
  .nav-shell { min-height: 74px; }
  .brand small { display: none; }
  .nav-button { padding: 11px 16px; min-height: 44px; }
  h1 { font-size: clamp(2.8rem, 17vw, 4.4rem); }
  h2 { font-size: 2.35rem; }
  .hero-actions,
  .button { width: 100%; }
  .trust-strip { display: grid; }
  .stitched-card { padding: 28px; transform: none; }
  .help-grid,
  .shop-grid,
  .sponsor-grid,
  .checklist-grid { grid-template-columns: 1fr; }
  .sponsor-card.wide { grid-column: auto; }
  .split-card { padding: 28px; }
}
