:root {
  --red: #c8102e;
  --red-dark: #8c0b20;
  --navy: #182144;
  --black: #111114;
  --ink: #202127;
  --muted: #62646f;
  --line: #e2e4e9;
  --paper: #ffffff;
  --soft: #f4f5f7;
  --gold: #d6a13a;
  --green: #0f6b55;
  --radius: 8px;
  --shadow: 0 18px 44px rgba(17, 17, 20, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.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 {
  min-height: 100svh;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(17, 17, 20, 0.94) 0%, rgba(24, 33, 68, 0.78) 44%, rgba(17, 17, 20, 0.16) 100%),
    url("../img/photos/WhatsApp Image 2026-06-17 at 15.22.42.jpeg") center / cover no-repeat;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  line-height: 1.05;
}

.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.34));
}

.brand strong {
  display: block;
  text-transform: uppercase;
  font-size: 1rem;
}

.brand small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  font-weight: 700;
}

.nav-links a {
  padding: 10px 11px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

.nav-links .nav-cta {
  color: #fff;
  background: var(--red);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(17, 17, 20, 0.55);
  padding: 11px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 4px 0;
  background: #fff;
}

.hero {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 72px 0 96px;
}

.hero-copy {
  max-width: 710px;
}

.hero-logo {
  width: min(180px, 46vw);
  height: auto;
  margin-bottom: 22px;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.42));
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero .eyebrow,
.don-section .eyebrow {
  color: #ffccd5;
}

h1,
h2,
h3 {
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  line-height: 1.03;
  margin: 0;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.9rem);
  max-width: 10ch;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.25rem);
  text-transform: uppercase;
}

h3 {
  font-size: 1.35rem;
}

.hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 13px 20px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button-primary {
  color: #fff;
  background: var(--red);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--red-dark);
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.button-light {
  color: var(--black);
  background: #fff;
}

.event-strip {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  min-height: 68px;
  background: linear-gradient(90deg, var(--red), var(--navy));
  overflow: hidden;
  overflow-x: clip;
}

.event-strip-label {
  padding-left: max(16px, calc((100vw - var(--max)) / 2));
  color: #fff;
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.marquee {
  min-width: 0;
  height: 1.6em;
  overflow: hidden;
  contain: paint;
  position: relative;
}

.marquee-track {
  width: max-content;
  display: flex;
  gap: 28px;
  position: absolute;
  top: 50%;
  left: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  font-weight: 800;
}

.marquee-track span::after {
  content: "•";
  margin-left: 28px;
  color: rgba(255, 255, 255, 0.55);
}

@keyframes marquee {
  from {
    transform: translate3d(0, -50%, 0);
  }
  to {
    transform: translate3d(-50%, -50%, 0);
  }
}

.section,
.site-footer,
.don-section {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.section-muted {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100vw - var(--max)) / 2));
  padding-right: max(16px, calc((100vw - var(--max)) / 2));
  background: var(--soft);
}

.section-heading {
  max-width: 830px;
  margin-bottom: 42px;
}

.section-heading.compact {
  max-width: 720px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 44px;
  align-items: start;
}

.lead {
  font-size: 1.32rem;
  color: var(--black);
  font-weight: 700;
}

.facts-grid,
.office-grid,
.shop-grid,
.actions-grid,
.sponsor-grid {
  display: grid;
  gap: 16px;
}

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

.facts-grid article,
.office-card,
.shop-card,
.action-card-small,
.sponsor-card,
.event-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 1px 0 rgba(17, 17, 20, 0.04);
}

.facts-grid strong,
.office-card strong,
.shop-card strong,
.sponsor-card strong {
  display: block;
  color: var(--black);
  font-family: "Arial Black", Impact, system-ui, sans-serif;
  font-size: 1.08rem;
  text-transform: uppercase;
}

.facts-grid span,
.office-card span,
.shop-card span,
.sponsor-card span,
.event-card p,
.action-card-small p {
  color: var(--muted);
}

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

.office-card {
  min-height: 150px;
}

.office-card .role {
  margin: 0 0 16px;
  color: var(--red);
  font-weight: 800;
}

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

.shop-card {
  min-height: 245px;
  display: grid;
  align-content: space-between;
  gap: 18px;
}

.shop-visual {
  height: 86px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, var(--black) 0 44%, var(--red) 44% 62%, #fff 62% 100%);
  border: 1px solid var(--line);
}

.shop-card .price {
  color: var(--green);
  font-weight: 800;
}

.split-band {
  width: 100%;
  max-width: none;
  padding-left: max(16px, calc((100vw - var(--max)) / 2));
  padding-right: max(16px, calc((100vw - var(--max)) / 2));
  color: #fff;
  background: var(--black);
}

.split-band .section-heading p:not(.eyebrow),
.split-band .event-card p {
  color: rgba(255, 255, 255, 0.72);
}

.event-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.event-card {
  background: #1c1d22;
  border-color: rgba(255, 255, 255, 0.12);
}

.event-date {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 5px 10px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 0.84rem;
  font-weight: 800;
}

.event-card h3 {
  color: #fff;
}

.gallery-feature {
  min-height: 430px;
  display: grid;
  align-items: end;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
  background: var(--navy);
  color: #fff;
}

.gallery-feature img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(17, 17, 20, 0.86) 100%);
}

.gallery-feature div {
  position: relative;
  z-index: 1;
  padding: 30px;
}

.gallery-feature span,
.photo-tile span {
  display: inline-flex;
  margin-bottom: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.real-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.photo-tile {
  min-height: 230px;
  border: 0;
  border-radius: var(--radius);
  overflow: hidden;
  padding: 0;
  background: var(--navy);
  color: #fff;
  position: relative;
  cursor: pointer;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  display: block;
  transition: transform 220ms ease;
}

.photo-tile:hover img,
.photo-tile:focus-visible img {
  transform: scale(1.04);
}

.photo-tile span {
  position: absolute;
  left: 14px;
  bottom: 12px;
  z-index: 1;
  margin: 0;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(17, 17, 20, 0.72);
  font-size: 0.72rem;
}

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

.sponsor-card {
  min-height: 120px;
  display: grid;
  place-items: center;
  text-align: center;
}

.action-zone {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 46px;
  align-items: center;
}

.membership-panel {
  border-radius: var(--radius);
  padding: 28px;
  background: var(--black);
  color: #fff;
  box-shadow: var(--shadow);
}

.membership-panel h3 {
  margin-bottom: 18px;
}

.membership-panel ul {
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.membership-panel .button {
  margin-top: 14px;
}

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

.action-card-small {
  min-height: 190px;
}

.action-card-small h3 {
  margin-bottom: 12px;
}

.don-section {
  margin-bottom: 92px;
  padding: 44px;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(200, 16, 46, 0.96), rgba(17, 17, 20, 0.96)),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.don-section p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer {
  padding: 48px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: 42px;
}

.footer-brand small {
  color: var(--muted);
}

.footer-brand .brand-mark img {
  filter: none;
}

.site-footer p {
  max-width: 560px;
  color: var(--muted);
}

.site-footer h2 {
  font-size: 1.35rem;
}

.footer-links {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-links a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--black);
  font-weight: 800;
}

@media (max-width: 1040px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 72px 16px auto 16px;
    display: none;
    padding: 18px;
    border-radius: var(--radius);
    background: rgba(17, 17, 20, 0.98);
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

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

  .nav-links a {
    border-radius: var(--radius);
  }

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

  .event-list,
  .real-gallery,
  .sponsor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    background-position: 62% center;
  }

  .brand small {
    font-size: 0.72rem;
  }

  h1 {
    font-size: 3.25rem;
  }

  .hero {
    padding: 42px 0 62px;
  }

  .hero p:not(.eyebrow) {
    font-size: 1rem;
  }

  .event-strip {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 10px 0;
  }

  .event-strip-label {
    padding-left: 16px;
  }

  .section {
    padding: 64px 0;
  }

  .section-muted,
  .split-band {
    padding-left: 16px;
    padding-right: 16px;
  }

  .two-column,
  .action-zone,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .facts-grid,
  .office-grid,
  .shop-grid,
  .event-list,
  .gallery-grid,
  .sponsor-grid,
  .actions-grid {
    grid-template-columns: 1fr;
  }

  .gallery-feature {
    min-height: 300px;
  }

  .don-section {
    padding: 30px;
    flex-direction: column;
    align-items: flex-start;
  }
}
