@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@700;800;900&family=Montserrat:wght@400;500;600&display=swap');

:root {
  --black: #050505;
  --white: #ffffff;
  --gold: #b87924;
  --gold-light: #d39a3a;
  --brown: #2a1606;
  --line: rgba(255,255,255,.9);
  --max: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(0,0,0,.96);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  min-height: 88px;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}
.brand-mark {
  width: 78px;
  height: 70px;
  object-fit: contain;
  border-radius: 0;
  border: 0;
}
.brand-name {
  font-family: "League Spartan", Arial Black, sans-serif;
  font-size: clamp(22px, 2.4vw, 36px);
  font-weight: 900;
  letter-spacing: .01em;
  text-transform: uppercase;
  white-space: nowrap;
}
.nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .03em;
}
.nav a:hover, .nav a:focus { color: var(--gold-light); }

.hero {
  position: relative;
  min-height: min(760px, 76vh);
  display: grid;
  place-items: center;
  background: linear-gradient(rgba(0,0,0,.18), rgba(0,0,0,.48)), url('../images/hero.jpg') center center / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.3), transparent 60%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 44px));
  text-align: center;
  margin-top: 18%;
}
.hero h1,
.section-title,
.action-card h3,
.about-copy h2,
.sponsors h2,
.updates h2 {
  margin: 0;
  font-family: "League Spartan", Arial Black, sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  line-height: .98;
}
.hero h1 {
  font-size: clamp(38px, 5.5vw, 78px);
  text-shadow: 0 3px 18px rgba(0,0,0,.55);
}
.hero h1 span { color: #ffc21b; }
.hero p {
  margin: 34px auto 0;
  max-width: 850px;
  font-size: clamp(17px, 1.8vw, 25px);
  line-height: 1.55;
  text-shadow: 0 2px 12px rgba(0,0,0,.75);
}

.about-preview {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 32px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 72px;
  align-items: center;
}
.about-media video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #111;
}
.about-copy h2 { font-size: clamp(40px, 5vw, 68px); }
.about-copy p {
  margin: 26px 0 30px;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.65;
  color: rgba(255,255,255,.88);
}
.pill-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  padding: 15px 30px;
  border: 1.5px solid #fff;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: .2s ease;
}
.pill-button:hover { background: #fff; color: #111; }

.take-action {
  background: linear-gradient(180deg, #0e0904 0%, #3e240b 42%, #a66e24 100%);
  padding: 88px 32px 104px;
}
.take-inner { max-width: 1080px; margin: 0 auto; }
.section-title {
  text-align: center;
  font-size: clamp(48px, 6vw, 78px);
  margin-bottom: 52px;
}
.action-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.action-card {
  position: relative;
  min-height: 245px;
  padding: 28px;
  overflow: hidden;
  border: 2px solid var(--line);
  border-radius: 14px;
  text-decoration: none;
  background: rgba(255,255,255,.025);
  transition: transform .2s ease, background .2s ease;
}
.action-card:hover { transform: translateY(-4px); background: rgba(255,255,255,.08); }
.action-card h3 {
  position: relative;
  z-index: 1;
  max-width: 76%;
  font-size: clamp(31px, 3.2vw, 47px);
}
.action-card p {
  position: relative;
  z-index: 1;
  max-width: 66%;
  margin: 20px 0 0;
  font-size: 18px;
  line-height: 1.5;
}
.action-card img {
  position: absolute;
  right: 24px;
  bottom: 20px;
  width: 118px;
  height: 118px;
  object-fit: contain;
}

.updates {
  background: #fff;
  color: #111;
  padding: 80px 28px;
  text-align: center;
}
.updates h2, .sponsors h2 { font-size: clamp(42px, 5vw, 68px); }
.facebook-frame {
  width: 100%;
  max-width: 620px;
  min-height: 520px;
  margin: 34px auto 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.sponsors {
  padding: 88px 32px 104px;
  background: linear-gradient(180deg, #a66e24 0%, #5e3a13 52%, #050505 100%);
  text-align: center;
}
.sponsors p {
  max-width: 700px;
  margin: 24px auto 44px;
  font-size: 18px;
  line-height: 1.55;
}
.sponsor-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.sponsor-card {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(255,255,255,.96);
  border-radius: 12px;
  transition: transform .2s ease;
}
.sponsor-card:hover { transform: translateY(-3px); }
.sponsor-card img {
  max-width: 100%;
  max-height: 105px;
  object-fit: contain;
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 58px 32px 46px;
  display: grid;
  grid-template-columns: 1.4fr .6fr;
  gap: 40px;
  align-items: start;
}
.site-footer h2 {
  margin: 0 0 22px;
  font-family: "League Spartan", Arial Black, sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  text-transform: uppercase;
}
.footer-links { display: grid; gap: 14px; }
.footer-links a { text-decoration: none; text-transform: uppercase; }
.footer-note { color: rgba(255,255,255,.58); font-size: 13px; margin-top: 34px; }

@media (max-width: 900px) {
  .header-inner { padding: 0 20px; }
  .brand-mark { width: 64px; height: 58px; }
  .brand-name { font-size: 24px; }
  .nav { gap: 18px; }
  .about-preview { grid-template-columns: 1fr; gap: 42px; padding-top: 72px; }
  .about-copy { text-align: center; }
  .action-card h3 { max-width: 70%; }
  .sponsor-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 700px) {
  .site-header { position: static; }
  .header-inner { min-height: auto; padding: 16px 18px; flex-direction: column; }
  .brand-name { white-space: normal; text-align: center; }
  .nav { width: 100%; justify-content: center; flex-wrap: wrap; }
  .hero { min-height: 640px; background-position: 62% center; }
  .hero-content { margin-top: 46%; }
  .about-preview { padding: 62px 20px; }
  .take-action { padding: 66px 18px 78px; }
  .action-grid { grid-template-columns: 1fr; }
  .action-card { min-height: 215px; }
  .sponsor-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .sponsor-card { min-height: 125px; padding: 16px; }
  .site-footer { grid-template-columns: 1fr; padding: 48px 22px; }
}

@media (max-width: 440px) {
  .nav { gap: 12px; }
  .nav a { font-size: 12px; }
  .hero { min-height: 580px; }
  .hero-content { margin-top: 55%; }
  .hero p { font-size: 16px; }
  .action-card h3 { max-width: 68%; font-size: 31px; }
  .action-card p { max-width: 62%; font-size: 15px; }
  .action-card img { width: 94px; height: 94px; }
}

/* About page */
.about-page {
  background: #000;
}

.about-page .nav .active {
  color: #dca92e;
}

.about-main {
  overflow: hidden;
  background: linear-gradient(180deg, #000 0%, #080706 18%, #9c681e 66%, #000 100%);
  color: #fff;
}

.about-feature {
  width: min(100% - 64px, 1380px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
  gap: clamp(36px, 5vw, 76px);
  align-items: center;
  padding: clamp(74px, 8vw, 128px) 0;
}

.about-feature-community {
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 1fr);
  padding-top: clamp(80px, 9vw, 150px);
  padding-bottom: clamp(100px, 10vw, 170px);
}

.about-feature-copy h1,
.about-feature-copy h2 {
  margin: 0 0 42px;
  color: #fff;
  font-family: "League Spartan", Impact, "Arial Black", Arial, sans-serif;
  font-weight: 900;
  line-height: .95;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.about-feature-copy h1 {
  font-size: clamp(48px, 5vw, 78px);
}

.about-feature-copy h2 {
  font-size: clamp(44px, 4.8vw, 72px);
}

.about-feature-copy p {
  margin: 0 0 28px;
  color: rgba(255,255,255,.95);
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: clamp(18px, 1.35vw, 23px);
  line-height: 1.55;
}

.about-feature-copy-right {
  text-align: right;
}

.about-feature-media {
  min-width: 0;
}

.about-feature-media video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  min-height: 300px;
  object-fit: cover;
  background: #000;
  border: 0;
  box-shadow: 0 22px 65px rgba(0,0,0,.32);
}

@media (max-width: 680px) {
  .about-feature,
  .about-feature-community {
    width: min(100% - 36px, 760px);
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 62px 0;
  }

  .about-feature-community .about-feature-media {
    order: 2;
  }

  .about-feature-community .about-feature-copy {
    order: 1;
  }

  .about-feature-copy-right {
    text-align: left;
  }

  .about-feature-media video {
    min-height: 0;
  }

  .about-feature-copy h1,
  .about-feature-copy h2 {
    margin-bottom: 28px;
  }
}

@media (max-width: 560px) {
  .about-feature,
  .about-feature-community {
    width: min(100% - 28px, 620px);
    padding: 48px 0;
  }

  .about-feature-copy p {
    font-size: 17px;
    line-height: 1.55;
  }
}

/* Contact page */
.contact-page {
  background: #000;
}

.contact-page .nav .active {
  color: #dca92e;
}

.contact-main {
  min-height: calc(100vh - 88px);
  overflow: hidden;
  background:
    radial-gradient(circle at 0% 68%, rgba(194, 126, 31, .9) 0%, rgba(117, 70, 16, .52) 23%, transparent 48%),
    linear-gradient(145deg, #000 0%, #050403 48%, #000 100%);
  color: #fff;
}

.contact-hero {
  width: min(100% - 64px, 1380px);
  margin: 0 auto;
  padding: clamp(70px, 8vw, 118px) 0 clamp(42px, 5vw, 72px);
  text-align: center;
}

.contact-hero h1,
.contact-panel h2 {
  margin: 0;
  color: #fff;
  font-family: "League Spartan", Impact, "Arial Black", Arial, sans-serif;
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.5px;
  text-transform: uppercase;
}

.contact-hero h1 {
  font-size: clamp(50px, 5.7vw, 82px);
}

.contact-hero p {
  margin: 26px auto 0;
  max-width: 840px;
  color: rgba(255,255,255,.92);
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: clamp(18px, 1.5vw, 23px);
  line-height: 1.55;
}

.contact-grid {
  width: min(100% - 64px, 1380px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, .82fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: end;
  padding: clamp(42px, 5vw, 78px) 0 clamp(105px, 11vw, 170px);
}

.contact-panel h2 {
  margin-bottom: 38px;
  font-size: clamp(43px, 4.8vw, 70px);
}

.contact-panel p,
.contact-panel address {
  color: rgba(255,255,255,.95);
  font-family: "Avenir Next", Avenir, Montserrat, Arial, sans-serif;
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.65;
}

.contact-panel p {
  margin: 0 0 26px;
}

.contact-panel address {
  margin: 0;
  font-style: normal;
}

.contact-report-list {
  display: grid;
  gap: 22px;
  margin: 34px 0;
}

.contact-report-list a,
.contact-panel address a {
  color: #fff;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.contact-report-list a {
  text-decoration: none;
  font-weight: 500;
}

.contact-report-list a:hover,
.contact-panel address a:hover {
  color: #f0bd54;
}

.contact-details {
  text-align: right;
  padding-bottom: 6px;
}

.contact-details address p {
  margin-bottom: 24px;
}

.contact-emergency {
  margin-top: 34px !important;
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 64px;
  }

  .contact-details {
    text-align: left;
  }
}

@media (max-width: 560px) {
  .contact-hero,
  .contact-grid {
    width: min(100% - 32px, 620px);
  }

  .contact-hero {
    padding-top: 54px;
  }

  .contact-grid {
    padding-top: 30px;
    padding-bottom: 82px;
  }

  .contact-panel h2 {
    margin-bottom: 28px;
  }

  .contact-panel p,
  .contact-panel address {
    font-size: 17px;
  }
}
