:root {
  --bg: #fffaf0;
  --paper: #ffffff;
  --ink: #090909;
  --muted: #4e4a57;
  --red: #e91414;
  --red-dark: #8f0909;
  --purple: #5d149f;
  --blue: #0759e9;
  --yellow: #ffb400;
  --green: #2fa84f;
  --line: #111111;
  --shadow: 7px 7px 0 #111111;
  --radius: 24px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 15%, rgba(93, 20, 159, 0.18) 0 5rem, transparent 5.1rem),
    radial-gradient(circle at 90% 5%, rgba(7, 89, 233, 0.12) 0 7rem, transparent 7.1rem),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
details:focus-visible,
summary:focus-visible {
  outline: 4px solid var(--yellow);
  outline-offset: 4px;
}

.container {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.section-pad {
  padding: clamp(3rem, 7vw, 6.5rem) 0;
}

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  transform: translateY(-200%);
  padding: 0.8rem 1rem;
  background: var(--ink);
  color: #fff;
  border-radius: 0.7rem;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 4px solid var(--line);
}

.nav-shell {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-weight: 950;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.brand img {
  width: 58px;
  height: 58px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: #fff;
}

.brand span {
  font-size: clamp(1.05rem, 2vw, 1.45rem);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 850;
}

.site-nav a {
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  text-decoration: none;
}

.site-nav a:hover {
  background: #f0e7ff;
}

.nav-cta {
  background: var(--ink);
  color: #fff;
  border: 3px solid var(--ink);
}

.nav-cta:hover {
  background: var(--purple) !important;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 44px;
  border: 3px solid var(--ink);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 3px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.paint {
  position: absolute;
  border-radius: 999px;
  filter: blur(0.5px);
  opacity: 0.9;
  transform: rotate(-12deg);
}

.paint-one {
  width: 18rem;
  height: 7rem;
  top: 9rem;
  left: -6rem;
  background: rgba(233, 20, 20, 0.16);
}

.paint-two {
  width: 22rem;
  height: 8rem;
  right: -9rem;
  bottom: 6rem;
  background: rgba(7, 89, 233, 0.14);
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--purple);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

h1 {
  font-size: clamp(4rem, 14vw, 8.6rem);
  text-transform: uppercase;
  text-shadow: 4px 4px 0 #fff, 8px 8px 0 #111;
}

h1 span {
  display: block;
  color: var(--red);
}

h2 {
  font-size: clamp(2.5rem, 7vw, 5rem);
}

h3 {
  font-size: clamp(1.55rem, 3vw, 2.3rem);
}

.lead {
  max-width: 62ch;
  margin: 1.7rem 0 0;
  color: #27222d;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  font-weight: 650;
}

.hero-actions,
.venue-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.1rem;
  border: 4px solid var(--ink);
  border-radius: 999px;
  box-shadow: 4px 4px 0 var(--ink);
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.button-primary {
  background: var(--yellow);
}

.button-secondary {
  background: #fff;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 2rem 0 0;
}

.quick-facts div {
  padding: 1rem;
  background: #fff;
  border: 4px solid var(--ink);
  border-radius: 18px;
  box-shadow: 4px 4px 0 var(--ink);
}

.quick-facts dt {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-facts dd {
  margin: 0.25rem 0 0;
  font-size: 1.25rem;
  font-weight: 950;
}

.poster-card {
  padding: 0.75rem;
  background: #fff;
  border: 5px solid var(--ink);
  border-radius: 28px;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.poster-card img {
  border-radius: 18px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.section-white {
  background: rgba(255, 255, 255, 0.84);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 2.2rem;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading p:not(.eyebrow) {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 600;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.info-card,
.cause-card,
.venue-card,
.contact-card,
.charity-card,
.games-grid article,
details {
  background: #fff;
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 var(--ink);
}

.info-card {
  min-height: 200px;
  padding: 1.2rem;
}

.info-card p,
.cause-card p,
.venue-card p,
.contact-card p,
.charity-card p,
.games-grid p,
.faq-list p {
  color: var(--muted);
  font-weight: 600;
}

.card-kicker {
  display: inline-flex;
  margin-bottom: 0.85rem;
  padding: 0.25rem 0.6rem;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.red-card {
  background: #fff0f0;
}

.green-card {
  background: #effff4;
}

.blue-card {
  background: #eef5ff;
}

.yellow-card {
  background: #fff6da;
}

.section-ink {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(93, 20, 159, 0.92), rgba(9, 9, 9, 0.98)),
    var(--ink);
}

.section-ink .eyebrow,
.section-ink .section-heading p:not(.eyebrow) {
  color: #ffe078;
}

.games-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.games-grid article {
  padding: 1.1rem;
  color: var(--ink);
  transition: transform 160ms ease;
}

.games-grid article:hover {
  transform: rotate(-1deg) scale(1.02);
}

.games-grid article:nth-child(3n + 1) {
  background: #fff0f0;
}

.games-grid article:nth-child(3n + 2) {
  background: #f1e8ff;
}

.games-grid article:nth-child(3n + 3) {
  background: #eaf2ff;
}

.games-grid h3 {
  font-size: 1.45rem;
}

.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.split-panel p {
  color: var(--muted);
  font-weight: 620;
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  font-weight: 720;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1rem;
  height: 1rem;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 2px 2px 0 var(--ink);
}

.cause-card {
  padding: 1.5rem;
  background:
    radial-gradient(circle at 85% 15%, rgba(255, 180, 0, 0.45), transparent 25%),
    #fff;
}

.cause-card h3 {
  color: var(--purple);
}

.section-spray {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 180, 0, 0.22), transparent 11rem),
    radial-gradient(circle at 90% 75%, rgba(7, 89, 233, 0.18), transparent 12rem),
    #fffaf0;
}

/* Venue, contact and charity cards */
.venue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 1.3rem;
  align-items: stretch;
}

.venue-card,
.contact-card,
.charity-card {
  padding: clamp(1.3rem, 3vw, 2rem);
}

.venue-card h2,
.contact-card h2,
.charity-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.charity-card {
  grid-column: 1 / -1;
  background:
    radial-gradient(circle at 90% 15%, rgba(255, 180, 0, 0.35), transparent 28%),
    #fff;
}

address {
  margin-top: 1.2rem;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 800;
}

.contact-link {
  display: inline-flex;
  margin-top: 0.5rem;
  color: var(--blue);
  font-size: clamp(1.15rem, 3vw, 1.8rem);
  font-weight: 950;
  text-decoration-thickness: 0.16em;
  text-underline-offset: 0.2em;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.copy-email {
  display: inline-flex;
  margin-top: 1rem;
  padding: 0.6rem 0.8rem;
  border: 3px solid var(--ink);
  border-radius: 999px;
  background: #fff;
  box-shadow: 3px 3px 0 var(--ink);
  font-weight: 900;
  cursor: pointer;
}

.copy-status {
  min-height: 1.5rem;
  margin-bottom: 0;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

details {
  padding: 1rem 1.1rem;
}

summary {
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 950;
}

summary::marker {
  color: var(--red);
}

.final-cta {
  padding: 2rem 0;
  background: var(--ink);
  color: #fff;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.2rem;
  align-items: center;
}

.final-cta img {
  width: 98px;
  height: 98px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #fff;
}

.final-cta h2 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
}

.final-cta .eyebrow {
  color: var(--yellow);
}

.site-footer {
  padding: 1.2rem 0;
  background: #fff;
  border-top: 4px solid var(--ink);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  font-weight: 950;
}

@media (max-width: 980px) {

  .hero-grid,
  .games-layout,
  .split-panel,
  .venue-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .charity-card {
    grid-column: auto;
  }

  .poster-card {
    max-width: 520px;
    margin-inline: auto;
  }

  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .games-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    position: relative;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    inset: 82px 1rem auto 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    background: #fff;
    border: 4px solid var(--ink);
    border-radius: 18px;
    box-shadow: 5px 5px 0 var(--ink);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-radius: 12px;
  }

  h1 {
    text-shadow: 3px 3px 0 #fff, 6px 6px 0 #111;
  }

  .quick-facts,
  .info-grid,
  .games-grid,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .quick-facts {
    gap: 0.75rem;
  }

  .venue-card h2,
  .contact-card h2,
  .charity-card h2 {
    font-size: clamp(1.8rem, 10vw, 2.6rem);
  }

  .final-cta-inner {
    text-align: center;
    justify-items: center;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}