@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap');
:root {
      --maroon: #4b1720;
      --maroon-dark: #2b0d13;
      --gold: #c49a4a;
      --cream: #f6ead3;
      --tan: #d6b777;
      --river: #437f9d;
      --ink: #1d1717;
      --white: #fffaf0;
    }
.supporters-banner {
  position: relative;
  text-align: center;
  margin: 0;
  line-height: 1;
}
 .supporters-banner div {
  position: relative;
  z-index: 1;
}   
.supporters-banner::before {
    content: "";
    position: absolute;

    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: clamp(300px, 45vw, 750px);
    height: clamp(300px, 45vw, 750px);

    background: url("../assets/Images/5F0C1E26-12FA-464C-8C86-75D9571A091D.png") center/contain no-repeat;

    opacity: 0.25;

    z-index: 0;

    pointer-events: none;

    filter: drop-shadow(0 0 20px rgba(196,154,74,0.25));
}

.supporters-banner div:first-child {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: rgba(196, 154, 74, 0.8);
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}
.supporters-banner div:not(:first-child) {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900;
  color: rgba(246, 234, 211, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
  font-family: "Oswald", Arial, sans-serif;
  color: var(--cream);
  background: var(--maroon-dark);
  line-height: 1.6;
  font-weight: 400;
}

p {
  font-size: 1.2rem;
  letter-spacing: 0.015em;
  line-height: 1.7;
}

    a {
      color: inherit;
      text-decoration: none;
    }

   header {
  position: relative;
  z-index: 10;
  background: rgba(43, 13, 19, 0.94);
  border-bottom: 1px solid rgba(196, 154, 74, 0.35);
  backdrop-filter: blur(8px);
}

/* HEADER LAYOUT */
.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 22px 22px 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 8px;
  text-align: center;
}

/* ---------- MOBILE MENU BUTTON ---------- */

.mobile-menu-toggle {
  display: none;

  width: 46px;
  height: 46px;
  padding: 10px;

  border: 1px solid rgba(196, 154, 74, 0.45);
  border-radius: 12px;

  background: transparent;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;

  width: 100%;
  height: 2px;
  margin: 5px 0;

  border-radius: 999px;

  background: var(--cream);

  transition:
    transform 220ms ease,
    opacity 220ms ease;
}

.mobile-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* CREST + CLUB NAME */
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 2px;

  font-family: "Oswald", sans-serif;
  text-transform: uppercase;
}

.brand-mark {
  width: 275px;
  height: 275px;
  object-fit: contain;
  display: block;
}

.brand-name {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  color: var(--cream);
}

.brand-tagline {
  margin-top: 2px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  color: var(--gold);
}

/* HEADER NAVIGATION */
nav {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 34px;
  margin-top: 6px;

  font-family: "Oswald", sans-serif;
  font-size: 1rem;
  font-weight: 600;

  text-transform: uppercase;
  letter-spacing: 0.12em;
}

nav a {
  position: relative;
  padding: 7px 0;

  color: var(--cream);

  transition:
    color 0.25s ease;
}

nav a::after {
  content: "";

  position: absolute;
  left: 0;
  bottom: 1px;

  width: 100%;
  height: 2px;

  background: var(--gold);

  transform: scaleX(0);
  transform-origin: center;

  transition: transform 0.25s ease;
}

nav a:hover {
  color: var(--gold);
}

nav a:hover::after {
  transform: scaleX(1);
}    

.hero {
  min-height: calc(100vh - 220px);
  display: grid;
  place-items: center;
  padding: 40px 22px 64px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(43, 13, 19, 0.62), rgba(43, 13, 19, 0.86));
}

  .hero-grid {
  width: 100%;
  max-width: 1180px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 2;
}  

    .eyebrow {
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.2em;
      font-weight: 800;
      font-size: 0.85rem;
      margin-bottom: 16px;
    }

    h1 {
      font-size: clamp(2.2rem, 6vw, 5rem);
      line-height: 0.92;
      letter-spacing: -0.05em;
      text-transform: uppercase;
      white-space: nowrap;
      margin-bottom: 24px;
    }

    .tagline {
      font-size: clamp(1.25rem, 3vw, 2.1rem);
      color: var(--gold);
      font-weight: 900;
      margin-bottom: 14px;
    }

    .hero p {
      max-width: 660px;
      font-size: 1.1rem;
      color: rgba(246, 234, 211, 0.88);
    }

    .buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 30px;
    }

    .btn {
      padding: 14px 22px;
      border-radius: 999px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-size: 0.85rem;
      border: 2px solid var(--gold);
    }

    .btn.primary {
      background: var(--gold);
      color: var(--maroon-dark);
    }

    .btn.secondary {
      color: var(--cream);
    }

    section {
      padding: 86px 22px;
    }

    .container {
      max-width: 1180px;
      margin: 0 auto;
    }

    .section-title {
      font-size: clamp(2rem, 5vw, 4rem);
      line-height: 1;
      text-transform: uppercase;
      margin-bottom: 18px;
      letter-spacing: -0.04em;
      text-align: center;
    }

    .section-copy {
  max-width: 760px;
  color: rgba(246, 234, 211, 0.86);
  font-size: 1.15rem;
  line-height: 1.7;

  margin: 0 auto 34px;
  text-align: center;
}
    .light {
      background: var(--cream);
      color: var(--maroon-dark);
    }

    .light .section-copy {
      color: rgba(43, 13, 19, 0.78);
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .card {
      background: rgba(255, 250, 240, 0.08);
      border: 1px solid rgba(196, 154, 74, 0.28);
      border-radius: 22px;
      padding: 26px;
    }

    .light .card {
      background: #fff8e9;
      border-color: rgba(75, 23, 32, 0.16);
    }

    .card h3 {
      color: var(--gold);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 10px;
      font-size: 1rem;
    }

    .light .card h3 {
      color: var(--maroon);
    }

    .union-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 14px;
      margin-top: 34px;
    }

    .value {
      background: var(--maroon);
      color: var(--cream);
      border-radius: 20px;
      padding: 22px 16px;
      min-height: 150px;
      border: 1px solid rgba(196, 154, 74, 0.4);
    }

    .letter {
      font-size: 3rem;
      font-weight: 900;
      color: var(--gold);
      line-height: 1;
    }

    .value strong {
  display: block;
  margin: 8px 0 10px;

  color: var(--gold);

  font-size: 1.25rem;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.value p {
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--cream);
}

    .quote {
      background: var(--maroon);
      color: var(--cream);
      border-top: 6px solid var(--gold);
      border-radius: 24px;
      padding: 36px;
      font-size: clamp(1.4rem, 4vw, 2.6rem);
      line-height: 1.12;
      font-weight: 900;
      letter-spacing: -0.03em;
      text-align: center;
    }

    .quote span {
      color: var(--gold);
    }

    .two-col {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 36px;
      align-items: start;
    }

    .promise-list {
      display: grid;
      gap: 14px;
    }

    .promise {
     padding: 18px 20px;
     border-left: 5px solid var(--gold);
     background: rgba(255, 250, 240, 0.08);
     border-radius: 0 16px 16px 0;
     font-size: 1.2rem;
     line-height: 1.6;
    }

    .promise strong {
  font-size: 1.25rem;
  font-weight: 700;
}

    .form {
      background: var(--cream);
      color: var(--maroon-dark);
      border-radius: 26px;
      padding: 28px;
    }

    .form label {
      font-weight: 800;
      display: block;
      margin-bottom: 6px;
    }

    .form input, .form select, .form textarea {
      width: 100%;
      padding: 14px;
      border-radius: 12px;
      border: 1px solid rgba(43, 13, 19, 0.22);
      margin-bottom: 16px;
      font: inherit;
    }

    .form button {
      width: 100%;
      padding: 15px;
      border: none;
      border-radius: 999px;
      background: var(--maroon);
      color: var(--cream);
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      cursor: pointer;
    }

    footer {
      padding: 34px 22px;
      border-top: 1px solid rgba(196, 154, 74, 0.3);
      text-align: center;
      color: rgba(246, 234, 211, 0.7);
    }

  @media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  h1 {
    white-space: normal;
  }

  .hero p {
    margin: 0 auto;
  }

  .buttons {
    justify-content: center;
  }

  .supporters-banner::before {
    width: 320px;
    height: 320px;
  }
}
    @media (max-width: 768px) {
  html,
  body {
    overflow-x: hidden;
  }

 nav {
  display: none;

  grid-column: 1 / -1;

  width: 100%;
  margin-top: 8px;
  padding: 18px 0 8px;

  flex-direction: column;
  align-items: center;
  gap: 18px;

  font-size: 0.9rem;
}

.nav {
  padding: 14px 18px;

  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;

  gap: 12px;
  text-align: left;
}

nav.is-open {
  display: flex;
} 

.brand {
  display: grid;
  grid-template-columns: 70px auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 14px;
  row-gap: 2px;
}

.brand-mark {
  width: 70px;
  height: 70px;

  grid-column: 1;
  grid-row: 1 / 3;
}

.brand-name {
  grid-column: 2;
  grid-row: 1;

  align-self: end;
  font-size: 1.1rem;
}

.brand-tagline {
  grid-column: 2;
  grid-row: 2;

  align-self: start;
  font-size: 0.7rem;
}

section {
    padding: 64px 22px;
  }

  .two-col {
    grid-template-columns: 1fr;
  }

  .mobile-menu-toggle {
  display: block;
}

  .cards {
    grid-template-columns: 1fr;
  }

  .union-grid {
    grid-template-columns: 1fr;
  }

  .form {
    width: 100%;
  }

  .quote {
    padding: 28px 22px;
  }

  .section-title {
    font-size: 2.4rem;
  }
}
.form-note {
    margin-top: 18px;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(43, 13, 19, 0.65);
    line-height: 1.5;
}

.form-note strong {
    color: var(--maroon);
}
.form-note a {
    color: var(--maroon);
    font-weight: 700;
    text-decoration: none;
}

.form-note a:hover {
    text-decoration: underline;
}

/* ==============================
   FOUNDING 100
   ============================== */

.founding-hero {
  min-height: 650px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 22px;

  background:
    radial-gradient(
      circle at center,
      rgba(75, 23, 32, 0.9),
      var(--maroon-dark) 70%
    );
}

.founding-hero-content {
  max-width: 850px;
}

.founding-title {
  white-space: normal;
  margin-bottom: 24px;
}

.founding-lead {
  max-width: 720px;
  margin: 0 auto 32px;

  font-size: 1.35rem;
  line-height: 1.7;

  color: rgba(246, 234, 211, 0.9);
}

.founding-count {
  display: flex;
  justify-content: center;
  align-items: baseline;

  margin: 18px 0 0;

  font-family: "Oswald", sans-serif;
  font-weight: 700;
  line-height: 1;
}

.founding-number {
  font-size: clamp(5rem, 12vw, 9rem);
  color: var(--gold);
}

.founding-divider {
  margin: 0 10px;
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: rgba(246, 234, 211, 0.4);
}

.founding-total {
  font-size: clamp(3rem, 7vw, 5rem);
  color: var(--cream);
}

.founding-count-label {
  margin-bottom: 32px;

  font-size: 1rem;
  font-weight: 600;

  text-transform: uppercase;
  letter-spacing: 0.2em;

  color: rgba(246, 234, 211, 0.7);
}

.founding-form-container {
  max-width: 800px;
}

.founding-form {
  max-width: 700px;
  margin: 0 auto;
}

.form-success {
  max-width: 700px;
  margin: 0 auto;

  padding: 48px 32px;

  text-align: center;

  background: var(--cream);

  border: 2px solid var(--gold);
  border-radius: 26px;

  color: var(--maroon-dark);
}

.form-success-mark {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 80px;
  height: 80px;

  margin: 0 auto 20px;

  border: 2px solid var(--gold);
  border-radius: 50%;

  color: var(--maroon);

  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;

  letter-spacing: 0.08em;
}

.form-success h3 {
  margin-bottom: 14px;

  font-size: 2rem;

  text-transform: uppercase;

  color: var(--maroon);
}

.form-success-small {
  margin-top: 14px;

  font-weight: 600;
  color: var(--gold);
}
