:root {
  --orange: #e94f08;
  --orange-dark: #b93400;
  --cream: #fff8f1;
  --ink: #17100d;
  --blue: #001a95;
  --line: rgba(23, 16, 13, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}
main { overflow: hidden; }
h1, h2, h3, p { margin-top: 0; }

.content-width, .hero-inner {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}
.section-pad { padding: 112px 0; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 56px 0 92px;
  color: white;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.1), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(255,185,120,.15), transparent 24%),
    linear-gradient(145deg, #f35c0d 0%, var(--orange) 52%, #c83b00 100%);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .22;
  background:
    repeating-linear-gradient(18deg, transparent 0 3px, rgba(255,255,255,.025) 3px 4px),
    repeating-linear-gradient(108deg, transparent 0 7px, rgba(80,15,0,.035) 7px 8px);
}
.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 88px;
  align-items: end;
}
.foundation-logo {
  width: min(430px, 72vw);
  height: auto;
  margin-bottom: 44px;
}
.eyebrow {
  margin-bottom: 18px;
  color: var(--orange-dark);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow.light { color: rgba(255,255,255,.74); }
.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(5.6rem, 11.5vw, 10.6rem);
  font-weight: 400;
  line-height: .72;
  letter-spacing: -.035em;
  text-transform: uppercase;
}
.hero h1 span { display: block; }
.hero h1 .title-small {
  margin: .12em 0 .06em;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .34em;
  font-weight: 900;
  letter-spacing: .02em;
}
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  max-width: 800px;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
}
.hero-facts strong { flex-basis: 100%; font-size: 1.16em; }
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin-top: 34px;
}
.hero-actions p { margin: 0; font-weight: 700; }
.donate-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 2px solid white;
  border-radius: 999px;
  background: white;
  color: var(--orange-dark);
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(80,16,0,.22);
  transition: transform .2s ease, box-shadow .2s ease;
}
.donate-button:hover, .donate-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(80,16,0,.3);
  outline: none;
}
.qr-card {
  width: 220px;
  justify-self: center;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 22px;
  background: rgba(135,35,0,.24);
  text-align: center;
  backdrop-filter: blur(12px);
}
.qr-image {
  display: block;
  width: 188px;
  height: 188px;
  margin: 0 auto 12px;
  padding: 7px;
  border-radius: 8px;
  background: white;
  object-fit: contain;
}
.qr-card strong {
  display: block;
  color: white;
  font-size: .95rem;
}
.qr-card small { display: block; }
.qr-card small { margin-top: 6px; color: rgba(255,255,255,.68); line-height: 1.4; }
.scroll-cue {
  position: absolute;
  bottom: 24px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.scroll-cue b { font-size: 1.2rem; }

.section-heading { max-width: 760px; }
.section-heading h2, .closing-message h2 {
  margin-bottom: 24px;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(3.2rem, 7vw, 6.8rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.025em;
  text-transform: uppercase;
}
.section-heading > p:last-child {
  max-width: 650px;
  color: #665952;
  font-size: 1.14rem;
  line-height: 1.75;
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 64px;
}
.detail-card {
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}
.detail-card span {
  color: var(--orange-dark);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.detail-card strong { font-size: 1.35rem; line-height: 1.2; }
.activity-panel {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 48px;
  align-items: center;
  margin-top: 22px;
  padding: 44px;
  border-radius: 28px;
  color: white;
  background: var(--orange);
}
.activity-panel h3 {
  margin: 0;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
.activity-panel ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.activity-panel li {
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 14px;
  background: rgba(255,255,255,.1);
  font-weight: 800;
}

.timetable { color: white; background: var(--ink); }
.timetable-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 100px;
}
.timetable-heading { position: sticky; top: 64px; align-self: start; }
.timetable-heading > p:last-child { color: rgba(255,255,255,.58); }
.timeline { margin: 0; padding: 0; list-style: none; }
.timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 26px;
  padding: 0 0 44px 28px;
  border-left: 1px solid rgba(255,255,255,.2);
}
.timeline li::before {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  left: -6px;
  top: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(233,79,8,.18);
}
.timeline li:last-child { padding-bottom: 0; }
.timeline time { color: #ff7b3e; font-weight: 900; }
.timeline h3 { margin-bottom: 7px; font-size: 1.5rem; }
.timeline p { margin: 0; color: rgba(255,255,255,.58); line-height: 1.55; }

.sponsors { background: white; }
.centered { margin-inline: auto; text-align: center; }
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.sponsor-card {
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--cream);
  text-align: center;
}
.sponsor-card img { width: 100%; height: auto; }
.dominos-sponsor img {
  transform: scale(1.18);
  transform-origin: center;
}
.sponsor-major { background: #006491; color: white; text-transform: uppercase; }
.sponsor-major strong, .sponsor-major small,
.sponsor-placeholder strong, .sponsor-placeholder small { display: block; }
.sponsor-major strong { font-size: 1.8rem; }
.sponsor-major small { font-weight: 900; letter-spacing: .1em; }
.dominos-mark { color: #e31837; font-size: 3rem; }
.sponsor-placeholder {
  flex-direction: column;
  color: #8b7f78;
  border-style: dashed;
}
.sponsor-placeholder small {
  margin-top: 5px;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.closing-message {
  margin-top: 96px;
  padding: 72px 32px;
  border-radius: 32px;
  background: var(--orange);
  color: white;
  text-align: center;
}
.closing-message h2 { margin-bottom: 14px; }
.closing-message p { margin-bottom: 8px; }
footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px max(24px, calc((100% - 1180px) / 2));
  background: var(--ink);
  color: rgba(255,255,255,.58);
  font-size: .8rem;
}

.memorial {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.memorial::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -180px;
  top: -180px;
  border: 80px solid rgba(233, 79, 8, 0.08);
  border-radius: 50%;
}

.memorial-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}

.memorial-photo-frame {
  position: relative;
  aspect-ratio: 4 / 5;
  padding: 14px;
  border: 1px solid rgba(23, 16, 13, 0.14);
  border-radius: 28px;
  background: white;
  box-shadow: 0 24px 60px rgba(64, 24, 5, 0.14);
  transform: rotate(-1.5deg);
}

.memorial-photo-frame::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 6px;
  right: -30px;
  bottom: 52px;
  border-radius: 999px;
  background: var(--orange);
}

.memorial-photo-frame img,
.memorial-photo-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 18px;
}

.memorial-photo-frame img {
  display: block;
  object-fit: cover;
}

.memorial-photo-placeholder {
  display: grid;
  place-items: center;
  padding: 32px;
  border: 2px dashed rgba(185, 52, 0, 0.28);
  background:
    radial-gradient(circle at 30% 22%, rgba(233, 79, 8, 0.12), transparent 32%),
    #fff8f1;
  color: #8b6f62;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.memorial-copy {
  max-width: 680px;
}

.memorial-copy h2 {
  margin-bottom: 28px;
  font-family: Impact, "Arial Narrow", sans-serif;
  font-size: clamp(3.4rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

.memorial-copy p {
  color: #665952;
  font-size: 1.06rem;
  line-height: 1.75;
}

.memorial-copy .memorial-introduction {
  color: var(--ink);
  font-size: clamp(1.3rem, 2.3vw, 1.75rem);
  font-weight: 800;
  line-height: 1.4;
}

.memorial-copy blockquote {
  margin: 34px 0 0;
  padding: 22px 0 22px 28px;
  border-left: 5px solid var(--orange);
  color: var(--orange-dark);
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  font-style: italic;
  font-weight: 800;
}

@media (max-width: 900px) {
  .hero { min-height: auto; padding-top: 38px; }
  .hero-inner, .timetable-layout { grid-template-columns: 1fr; }
  .hero-inner { gap: 48px; }
  .qr-card { width: min(220px, 100%); }
  .detail-grid, .sponsor-grid { grid-template-columns: 1fr 1fr; }
  .activity-panel { grid-template-columns: 1fr; }
  .timetable-heading { position: static; }
  .memorial-layout { grid-template-columns: 1fr; }
  .memorial-photo-frame {
    width: min(420px, 92%);
    justify-self: center;
  }
  .memorial-copy { max-width: none; }
}

@media (max-width: 560px) {
  .content-width, .hero-inner { width: min(100% - 30px, 1180px); }
  .section-pad { padding: 78px 0; }
  .foundation-logo { margin-bottom: 34px; }
  .hero h1 { font-size: clamp(5rem, 26vw, 7.6rem); }
  .hero-facts { display: grid; gap: 7px; }
  .detail-grid, .sponsor-grid, .activity-panel ul { grid-template-columns: 1fr; }
  .activity-panel { padding: 30px 22px; }
  .timeline li { grid-template-columns: 1fr; gap: 8px; }
  footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; }
}
