:root {
  --red: #ee5055;
  --red-dark: #c9363e;
  --red-soft: #fff0f0;
  --ink: #202124;
  --muted: #62666d;
  --line: #e8e8e8;
  --white: #ffffff;
  --off-white: #fafafa;
  --shadow: 0 20px 60px rgba(32, 33, 36, 0.10);
  --radius-lg: 32px;
  --radius-md: 20px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 16px;
  top: 12px;
  transform: translateY(-150%);
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: 999px;
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }

.container { width: var(--container); margin-inline: auto; }
.section { padding: 112px 0; }
.section--soft { background: var(--off-white); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--red-dark);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 32px; height: 2px; background: currentColor; }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.04em; }
h1 { font-size: clamp(3rem, 7vw, 6.5rem); max-width: 880px; }
h2 { font-size: clamp(2.4rem, 5vw, 4.4rem); max-width: 800px; }
h3 { font-size: clamp(1.35rem, 2vw, 1.8rem); }
p { margin: 0; }
.lead { color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.3rem); max-width: 720px; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 56px; }
.section-head .lead { max-width: 500px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--white) 90%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 75%, transparent);
  backdrop-filter: blur(16px);
}
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 13px; font-weight: 900; letter-spacing: -.03em; }
.brand img { width: 54px; height: 54px; object-fit: contain; }
.brand-name { display: grid; line-height: 1; }
.brand-name small { margin-top: 5px; color: var(--muted); font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a { position: relative; color: #34363a; font-size: .93rem; font-weight: 750; }
.site-nav a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--red); transition: right .2s ease; }
.site-nav a:not(.button):hover::after, .site-nav a[aria-current="page"]::after { right: 0; }
.nav-toggle { display: none; width: 48px; height: 48px; padding: 0; border: 1px solid var(--line); background: var(--white); border-radius: 50%; }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { content: ""; display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-weight: 850;
  box-shadow: 0 12px 30px rgba(238, 80, 85, .22);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--red-dark); box-shadow: 0 16px 34px rgba(201, 54, 62, .28); }
.button--ghost { color: var(--ink); background: transparent; border-color: var(--line); box-shadow: none; }
.button--ghost:hover { color: var(--red-dark); background: var(--red-soft); border-color: #f6cfd1; box-shadow: none; }
.button--white { color: var(--red-dark); background: var(--white); box-shadow: none; }
.button--white:hover { color: var(--red-dark); background: #fff7f7; }

.hero { position: relative; overflow: hidden; padding: 82px 0 106px; }
.hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -210px;
  top: -260px;
  border-radius: 50%;
  background: var(--red-soft);
  z-index: -1;
}
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, .75fr); align-items: center; gap: clamp(52px, 7vw, 100px); }
.hero-copy .eyebrow { margin-bottom: 22px; }
.hero-copy h1 strong { color: var(--red); font-weight: 900; }
.hero-copy .lead { margin-top: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-note { display: flex; align-items: center; gap: 12px; margin-top: 34px; color: var(--muted); font-size: .92rem; font-weight: 700; }
.hero-note::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--red); box-shadow: 0 0 0 7px var(--red-soft); }
.hero-visual { position: relative; min-height: 630px; }
.hero-photo { width: 100%; height: 610px; object-fit: cover; border-radius: 220px 220px 28px 28px; box-shadow: var(--shadow); }
.hero-logo-card { position: absolute; left: -54px; bottom: 42px; width: 200px; padding: 20px; border-radius: 28px; background: var(--white); box-shadow: var(--shadow); }
.hero-logo-card img { width: 100%; }
.hero-badge { position: absolute; right: -28px; top: 62px; width: 148px; height: 148px; display: grid; place-items: center; padding: 22px; border-radius: 50%; color: var(--white); background: var(--red); text-align: center; font-size: .83rem; font-weight: 850; line-height: 1.25; transform: rotate(7deg); }

.stats { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.stat { padding: 32px 28px; text-align: center; }
.stat + .stat { border-left: 1px solid var(--line); }
.stat strong { display: block; color: var(--red); font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -.05em; }
.stat span { display: block; margin-top: 10px; color: var(--muted); font-size: .9rem; font-weight: 750; }

.about-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(50px, 8vw, 110px); align-items: center; }
.media-frame { position: relative; }
.media-frame::before { content: ""; position: absolute; left: -24px; bottom: -24px; width: 52%; height: 52%; border-radius: 32px; background: var(--red); z-index: -1; }
.media-frame img { width: 100%; min-height: 520px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); filter: grayscale(100%); }
.about-copy .lead { margin-top: 28px; }
.about-list { display: grid; gap: 22px; margin-top: 38px; }
.about-item { display: grid; grid-template-columns: 50px 1fr; gap: 18px; align-items: start; }
.about-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 16px; color: var(--red-dark); background: var(--red-soft); font-size: 1.15rem; font-weight: 900; }
.about-item p { margin-top: 7px; color: var(--muted); font-size: .96rem; }

.news-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.news-card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); transition: transform .25s ease, box-shadow .25s ease; }
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.news-card--featured { grid-column: 1 / -1; display: grid; grid-template-columns: .95fr 1.05fr; }
.news-image { width: 100%; height: 300px; object-fit: cover; }
.news-card--featured .news-image { height: 100%; min-height: 460px; }
.news-body { padding: 34px; }
.news-meta { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; margin-bottom: 20px; }
.news-date, .news-tag { display: inline-flex; align-items: center; min-height: 32px; padding: 0 12px; border-radius: 999px; font-size: .75rem; font-weight: 850; letter-spacing: .04em; text-transform: uppercase; }
.news-date { color: var(--red-dark); background: var(--red-soft); }
.news-tag { color: var(--muted); background: #f2f2f2; }
.news-card h3 { margin-bottom: 16px; }
.news-card p { color: var(--muted); }
.news-callout { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 28px; padding: 25px 28px; border-radius: var(--radius-md); background: var(--red-soft); }
.news-callout strong { color: var(--red-dark); }

.donate { position: relative; overflow: hidden; color: var(--white); background: var(--red); }
.donate::after { content: ""; position: absolute; right: -180px; bottom: -260px; width: 600px; height: 600px; border: 90px solid rgba(255,255,255,.10); border-radius: 50%; }
.donate .eyebrow { color: var(--white); }
.donate-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(48px, 7vw, 96px); align-items: start; }
.donate-copy h2 { max-width: 570px; }
.donate-copy > p { max-width: 580px; margin-top: 26px; color: rgba(255,255,255,.84); font-size: 1.1rem; }
.donate-image { margin-top: 38px; max-width: 330px; border-radius: 32px; filter: grayscale(100%); box-shadow: 0 28px 70px rgba(120, 20, 25, .32); }
.donation-options { display: grid; gap: 18px; }
.donation-card { padding: 30px; color: var(--ink); background: var(--white); border-radius: var(--radius-md); box-shadow: 0 18px 50px rgba(120, 20, 25, .18); }
.donation-card-top { display: flex; justify-content: space-between; gap: 20px; align-items: start; }
.donation-card .number { flex: 0 0 38px; height: 38px; display: grid; place-items: center; color: var(--white); background: var(--red); border-radius: 50%; font-weight: 900; }
.donation-card p { margin-top: 10px; color: var(--muted); }
.account-line { display: flex; justify-content: space-between; gap: 18px; align-items: center; margin-top: 24px; padding: 16px 18px; border: 1px solid var(--line); border-radius: 14px; background: var(--off-white); }
.account-line code { font-family: inherit; font-weight: 850; font-size: .95rem; }
.copy-button { flex: 0 0 auto; padding: 8px 12px; color: var(--red-dark); background: var(--red-soft); border: 0; border-radius: 999px; font-size: .78rem; font-weight: 850; }
.receipt { margin-top: 18px; padding: 28px; color: var(--ink); background: rgba(255,255,255,.93); border-radius: var(--radius-md); }
.receipt summary { cursor: pointer; color: var(--red-dark); font-weight: 900; }
.receipt-inner { display: grid; gap: 16px; margin-top: 22px; }
.receipt-inner p { color: var(--muted); }
.receipt-inner strong { color: var(--ink); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.contact-panel { padding: 46px; border-radius: var(--radius-lg); }
.contact-panel--dark { color: var(--white); background: var(--ink); }
.contact-panel--light { background: var(--red-soft); }
.contact-panel h2 { font-size: clamp(2.1rem, 4vw, 3.7rem); }
.contact-panel p { margin-top: 22px; color: rgba(255,255,255,.70); }
.contact-panel--light p { color: var(--muted); }
.contact-links { display: grid; gap: 12px; margin-top: 34px; }
.contact-link { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.18); font-weight: 850; }
.contact-panel--light .contact-link { border-color: #f3cacc; }
.contact-link span { color: var(--red); font-size: 1.25rem; }
.contact-panel--light .contact-link span { color: var(--red-dark); }

.site-footer { padding: 38px 0; border-top: 1px solid var(--line); }
.footer-grid { display: flex; justify-content: space-between; align-items: center; gap: 28px; }
.footer-brand { display: flex; align-items: center; gap: 12px; font-weight: 900; }
.footer-brand img { width: 42px; height: 42px; object-fit: contain; }
.footer-links { display: flex; flex-wrap: wrap; gap: 24px; color: var(--muted); font-size: .9rem; font-weight: 700; }
.footer-links a:hover { color: var(--red-dark); }

/* Legal pages */
.legal-hero { padding: 80px 0 56px; background: linear-gradient(180deg, var(--red-soft), var(--white)); }
.legal-hero h1 { font-size: clamp(2.8rem, 6vw, 5.2rem); }
.legal-hero p { margin-top: 24px; }
.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 780px); gap: 70px; align-items: start; padding: 72px 0 110px; }
.legal-nav { position: sticky; top: 112px; display: grid; gap: 8px; }
.legal-nav a { padding: 10px 14px; color: var(--muted); border-radius: 10px; font-size: .9rem; font-weight: 750; }
.legal-nav a:hover { color: var(--red-dark); background: var(--red-soft); }
.legal-content { min-width: 0; }
.legal-content section { scroll-margin-top: 110px; }
.legal-content section + section { margin-top: 64px; padding-top: 64px; border-top: 1px solid var(--line); }
.legal-content h2 { margin-bottom: 24px; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.legal-content h3 { margin: 34px 0 12px; font-size: 1.25rem; letter-spacing: -.02em; }
.legal-content p + p, .legal-content ul + p, .legal-content p + ul { margin-top: 16px; }
.legal-content ul { padding-left: 22px; }
.legal-content address { font-style: normal; }
.legal-content a { color: var(--red-dark); text-decoration: underline; text-underline-offset: 3px; }
.notice { margin: 0 0 40px; padding: 18px 20px; color: #6b3b00; background: #fff5d8; border: 1px solid #f5d588; border-radius: 14px; font-size: .92rem; }

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

@media (max-width: 980px) {
  .site-nav { position: fixed; inset: 84px 20px auto; display: none; padding: 22px; flex-direction: column; align-items: stretch; gap: 8px; background: var(--white); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 10px; }
  .nav-toggle { display: block; }
  .hero-grid, .about-grid, .donate-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 62px; }
  .hero-visual { max-width: 650px; min-height: 580px; margin-inline: auto; }
  .hero-photo { height: 560px; }
  .news-card--featured { grid-template-columns: 1fr; }
  .news-card--featured .news-image { min-height: 350px; height: 350px; }
  .donate-image { display: none; }
  .legal-layout { grid-template-columns: 1fr; gap: 30px; }
  .legal-nav { position: static; display: flex; flex-wrap: wrap; }
}

@media (max-width: 720px) {
  :root { --container: min(100% - 28px, 1180px); --radius-lg: 24px; }
  body { font-size: 16px; }
  .section { padding: 82px 0; }
  .section-head { display: block; margin-bottom: 38px; }
  .section-head .lead { margin-top: 20px; }
  .brand-name { display: none; }
  .nav-wrap { min-height: 76px; }
  .site-nav { inset: 76px 14px auto; }
  .hero { padding: 46px 0 76px; }
  .hero-grid { gap: 50px; }
  .hero-visual { min-height: 450px; }
  .hero-photo { height: 440px; border-radius: 160px 160px 24px 24px; }
  .hero-logo-card { left: 12px; bottom: -16px; width: 150px; padding: 14px; border-radius: 20px; }
  .hero-badge { right: -4px; top: 30px; width: 116px; height: 116px; padding: 16px; font-size: .7rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--line); }
  .about-grid { gap: 54px; }
  .media-frame img { min-height: 390px; }
  .news-grid, .contact-grid { grid-template-columns: 1fr; }
  .news-card--featured { grid-column: auto; }
  .news-card--featured .news-image, .news-image { height: 270px; min-height: 0; }
  .news-body, .donation-card, .contact-panel { padding: 26px; }
  .news-callout { align-items: flex-start; flex-direction: column; }
  .donation-card-top { justify-content: flex-start; }
  .account-line { align-items: flex-start; flex-direction: column; }
  .copy-button { align-self: stretch; }
  .footer-grid { align-items: flex-start; flex-direction: column; }
  .legal-hero { padding: 56px 0 38px; }
  .legal-layout { padding: 46px 0 82px; }
}

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