@import url('https://fonts.googleapis.com/css2?family=Anton&family=Oswald:wght@400;500;600;700&family=Inter:wght@400;500;700;800&display=swap');

:root {
  --bg: #090a08;
  --bg-2: #10110d;
  --panel: rgba(14, 15, 11, 0.88);
  --panel-light: rgba(255, 255, 255, 0.055);
  --gold: #b28b2e;
  --gold-bright: #d1aa44;
  --cream: #f3eee3;
  --muted: #c6bda9;
  --line: rgba(178, 139, 46, 0.55);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --nav-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 10%, rgba(178, 139, 46, 0.12), transparent 30%),
    radial-gradient(circle at 80% 35%, rgba(178, 139, 46, 0.09), transparent 28%),
    linear-gradient(180deg, #0b0c09 0%, #050605 100%);
}

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

.text-link {
  color: var(--gold-bright);
  text-decoration: underline;
  text-decoration-color: rgba(209, 170, 68, 0.75);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.text-link:hover {
  color: var(--cream);
  text-decoration-color: var(--cream);
}

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: relative;
  min-height: 100vh;
}

.navbar {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(178, 139, 46, 0.35);
  background: rgba(6, 7, 5, 0.72);
  backdrop-filter: blur(16px);
}

.brand-text {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 180px;
  color: var(--cream);
  line-height: 1;
}

.brand-main {
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.65);
}

.brand-sub {
  margin-top: 5px;
  color: var(--gold-bright);
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.68rem;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.92rem;
}

.nav-links a {
  position: relative;
  color: var(--cream);
  opacity: 0.86;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--gold);
  transition: right 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-bright);
  opacity: 1;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  right: 0;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--cream);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: calc(var(--nav-height) + 30px) 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/hero-bg.png");
  background-size: cover;
  background-position: center center;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 6, 4, 0.92) 0%, rgba(5, 6, 4, 0.68) 38%, rgba(5, 6, 4, 0.22) 74%, rgba(5, 6, 4, 0.42) 100%),
    linear-gradient(180deg, rgba(5, 6, 4, 0.18) 0%, rgba(5, 6, 4, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1060px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 40px;
}

.hero-logo {
  width: clamp(250px, 33vw, 430px);
  margin-bottom: 28px;
  filter: drop-shadow(0 26px 35px rgba(0, 0, 0, 0.8));
}

.eyebrow,
.section-kicker {
  color: var(--gold-bright);
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.035em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3rem, 8vw, 7.8rem);
  text-shadow: 0 10px 35px rgba(0, 0, 0, 0.65);
}

.hero-copy {
  max-width: 660px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: Oswald, sans-serif;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

button.btn {
  border: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: linear-gradient(180deg, #d1aa44, #9c7422);
  color: #11100c;
  box-shadow: 0 12px 28px rgba(178, 139, 46, 0.25);
}

.btn.secondary {
  border: 1px solid var(--line);
  color: var(--cream);
  background: rgba(0, 0, 0, 0.38);
}

.btn.full {
  width: 100%;
  margin-top: 12px;
}

.section {
  position: relative;
  padding: 96px 0;
  border-top: 1px solid rgba(178, 139, 46, 0.18);
  overflow: hidden;
  isolation: isolate;
}

.section > .container {
  position: relative;
  z-index: 2;
}

.section-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
  transform: scale(1.03);
}

.section-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 6, 4, 0.38) 0%, rgba(5, 6, 4, 0.62) 100%),
    linear-gradient(90deg, rgba(8, 9, 7, 0.34) 0%, rgba(8, 9, 7, 0.10) 50%, rgba(8, 9, 7, 0.28) 100%);
}


.bg-offroad::before {
  background-image: url("../assets/bg-offroad.jpg");
  background-position: center center;
}

.bg-campfire::before {
  background-image: url("../assets/bg-campfire.jpg");
  background-position: center center;
}

.bg-military::before {
  background-image: url("../assets/bg-military.jpg");
  background-position: center center;
}

.contact-image::before {
  background-position: center 45%;
}




.section-color.alt-gold {
  background:
    radial-gradient(circle at 20% 15%, rgba(209, 170, 68, 0.15), transparent 26%),
    radial-gradient(circle at 82% 75%, rgba(178, 139, 46, 0.10), transparent 24%),
    linear-gradient(180deg, rgba(17, 14, 8, 0.96) 0%, rgba(9, 9, 7, 0.98) 100%);
}

.section-color.alt-dark {
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 255, 255, 0.04), transparent 18%),
    radial-gradient(circle at 16% 70%, rgba(178, 139, 46, 0.11), transparent 26%),
    linear-gradient(180deg, rgba(8, 10, 8, 0.98) 0%, rgba(13, 14, 10, 0.98) 100%);
}

.section h2 {
  font-size: clamp(2.25rem, 5vw, 4.4rem);
}

.section p {
  color: var(--muted);
  font-size: 1.03rem;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 44px;
  align-items: center;
}

.two-column.reverse {
  grid-template-columns: 0.82fr 1fr;
}

.event-card,
.vendor-box,
.detail-list,
.contact-grid article,
.feature-card {
  background: linear-gradient(180deg, rgba(24, 25, 18, 0.90), rgba(8, 9, 7, 0.90));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.event-card {
  padding: 28px;
}

.card-row {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(178, 139, 46, 0.22);
}

.card-row:last-child {
  border-bottom: 0;
}

.card-row img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
}

.card-row strong {
  display: block;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.card-row span {
  display: block;
  color: var(--muted);
}

.section-heading {
  max-width: 790px;
  margin-bottom: 38px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(178, 139, 46, 0.18), transparent),
    #050504;
  aspect-ratio: 16 / 9;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}


.video-frame.video-mp4 {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(10px, 1vw, 14px);
  aspect-ratio: auto;
  background:
    linear-gradient(180deg, rgba(8, 9, 7, 0.96), rgba(0, 0, 0, 0.96));
}

.video-frame.video-mp4 video {
  position: relative;
  inset: auto;
  display: block;
  width: 100%;
  height: auto;
  border: 0;
  border-radius: 16px;
  object-fit: contain;
  background: #000;
}


.feature-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}

.feature-card {
  padding: 26px 18px;
  text-align: center;
  min-height: 230px;
}

.feature-card img {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream);
}

.feature-card p {
  margin: 0;
  font-size: 0.92rem;
}

.split-panel {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}


.detail-list {
  padding: 30px;
}

.detail-list > div {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  grid-template-areas:
    "num title"
    "num copy";
  column-gap: 22px;
  row-gap: 8px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(178, 139, 46, 0.22);
}

.detail-list > div:last-child {
  border-bottom: 0;
}

.detail-list span {
  grid-area: num;
  color: var(--gold);
  font-family: Anton, sans-serif;
  font-size: 2.4rem;
  line-height: 1;
}

.detail-list strong {
  grid-area: title;
  display: block;
  min-width: 0;
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 1.25rem;
}

.detail-list p {
  grid-area: copy;
  max-width: none;
  width: 100%;
  margin: 0;
}


.vendor-box {
  padding: 36px;
}

.vendor-box h3 {
  margin: 0 0 12px;
  font-family: Anton, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 2.2rem;
}

.gold-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}

.gold-list li {
  position: relative;
  margin: 12px 0;
  padding-left: 28px;
  color: var(--muted);
}

.gold-list li::before {
  content: "★";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.contact-grid article {
  padding: 28px;
}

.contact-grid span {
  display: block;
  color: var(--gold-bright);
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-grid strong {
  display: block;
  margin-bottom: 4px;
}

.contact-grid a {
  color: var(--muted);
}

.contact-grid a:hover {
  color: var(--gold-bright);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050605;
  padding: 30px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-inner img {
  width: 96px;
}

.footer-inner p {
  margin: 0;
  color: var(--gold-bright);
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.footer-inner a {
  color: var(--muted);
}


.intro-section .event-card,
.vendor-section .vendor-box,
.features-section .feature-card,
.contact-section .contact-grid article,
.details-section .detail-list {
  backdrop-filter: blur(4px);
}

.video-section .video-frame,
.details-section .detail-list,
.intro-section .event-card,
.vendor-section .vendor-box,
.contact-section .contact-grid article,
.features-section .feature-card {
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.52);
}

.features-section .feature-card {
  background: linear-gradient(180deg, rgba(23, 24, 18, 0.82), rgba(8, 9, 7, 0.82));
}

.video-section .section-heading,
.contact-section .section-heading,
.details-section .panel-copy,
.vendor-section .two-column > div:last-child,
.intro-section .two-column > div:first-child {
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}


.pass-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.pass-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(24, 25, 18, 0.90), rgba(8, 9, 7, 0.90)),
    radial-gradient(circle at 20% 0%, rgba(209, 170, 68, 0.16), transparent 34%);
  box-shadow: var(--shadow);
}

.pass-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(178, 139, 46, 0.16) 0 1px, transparent 1px),
    linear-gradient(45deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.28;
}

.pass-card > * {
  position: relative;
  z-index: 1;
}

.pass-card-header {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(178, 139, 46, 0.35);
}

.pass-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--gold-bright);
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.85rem;
}

.pass-card h3 {
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1;
}

.pass-card .gold-list {
  flex: 1;
  min-height: 150px;
}


.details-note {
  display: inline-block;
  margin: 16px 0 24px;
  padding: 14px 18px;
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  background: rgba(0, 0, 0, 0.34);
  color: var(--cream);
  font-weight: 700;
}

.pass-price {
  margin-top: 12px;
  color: var(--gold-bright);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.04em;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}

.pass-price::after {
  content: " per adult";
  display: inline-block;
  margin-left: 10px;
  color: var(--muted);
  font-family: Oswald, sans-serif;
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  vertical-align: middle;
}

.total-price {
  margin-top: 12px;
  color: var(--gold-bright);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0.04em;
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.45);
}
.total-price::after {
  content: " total";
  display: inline-block;
  margin-left: 10px;
  color: var(--muted);
  font-family: Oswald, sans-serif;
  font-size: clamp(0.85rem, 1.3vw, 1rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  vertical-align: middle;
}


@media (max-width: 1100px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

@media (max-width: 860px) {
  :root {
    --nav-height: 72px;
  }

  .brand-text {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 180px;
  color: var(--cream);
  line-height: 1;
}

.brand-main {
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  font-size: clamp(1.15rem, 2vw, 1.6rem);
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.65);
}

.brand-sub {
  margin-top: 5px;
  color: var(--gold-bright);
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.68rem;
  font-weight: 700;
}

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(6, 7, 5, 0.96);
  }

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

  .nav-links a {
    padding: 10px 4px;
  }

  .two-column,
  .two-column.reverse,
  .split-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 92vh;
  }

  .hero-bg {
    background-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 6, 4, 0.45) 0%, rgba(5, 6, 4, 0.92) 100%),
      linear-gradient(90deg, rgba(5, 6, 4, 0.88), rgba(5, 6, 4, 0.42));
  }

  .section {
    padding: 70px 0;
  }
}

@media (max-width: 640px) {
  .detail-list > div {
    grid-template-columns: 1fr;
    grid-template-areas:
      "num"
      "title"
      "copy";
  }

  .container,
  .hero-content {
    width: min(100% - 28px, 1160px);
  }

  .feature-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    min-height: auto;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .detail-list > div {
    grid-template-columns: 1fr;
  }
}


.section-image {
  min-height: 620px;
  display: flex;
  align-items: center;
}

.section-image .section-kicker {
  position: relative;
  display: inline-block;
}

.section-image .section-kicker::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 76px;
  height: 2px;
  background: var(--gold);
}

.video-section,
.vendor-section {
  position: relative;
}

.video-section::before,
.vendor-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(135deg, rgba(178, 139, 46, 0.12) 0 1px, transparent 1px),
    linear-gradient(45deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.38;
}

.video-section > .container,
.vendor-section > .container {
  position: relative;
  z-index: 2;
}


.details-image::before {
  background-position: center 45%;
}


@media (max-width: 700px) {
  .pass-grid {
    grid-template-columns: 1fr;
  }
}


.bg-participants::before {
  background-image: url("../assets/bg-participants.jpg");
  background-position: center center;
}

.bg-contact::before {
  background-image: url("../assets/bg-contact.jpg");
  background-position: center 42%;
}




.signup-modal {
  ___width: min(720px, calc(100% - 32px));
width: min(960px, calc(100vw - 32px));
max-height: calc(100vh - 32px);
overflow-y: auto;
overflow-x: hidden;

  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 0;
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(24, 25, 18, 0.98), rgba(8, 9, 7, 0.98));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
}

.signup-modal::backdrop {
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
}

.signup-form {
  position: relative;
  padding: clamp(24px, 4vw, 42px);
}

.signup-form h2 {
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(2.3rem, 6vw, 4rem);
  line-height: 1;
}

.modal-price {
  margin: 10px 0 26px;
  color: var(--gold-bright);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: var(--cream);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 24px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: var(--gold-bright);
  font-family: Oswald, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  font-weight: 700;
}

.form-grid label.full {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  border: 1px solid rgba(178, 139, 46, 0.45);
  border-radius: 10px;
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--cream);
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  outline: none;
}

.form-grid select {
  appearance: none;
}

.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
  border-color: var(--gold-bright);
  box-shadow: 0 0 0 3px rgba(178, 139, 46, 0.22);
}

@media (max-width: 640px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}






.social-media-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

img.social-link {
  width: 32px;
  height: 32px;
  display: block;
  flex: 0 0 32px;
  object-fit: contain;
}

.social-media-row a {
  color: var(--cream);
  text-decoration: none;
}

.social-media-row a:hover {
  color: var(--gold-bright);
}





.tshirt-section {
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(178, 139, 46, 0.35);
}

.tshirt-section h3 {
  margin: 0 0 6px;
  color: var(--cream);
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.tshirt-section p {
  margin: 0 0 18px;
  color: var(--muted);
}

.tshirt-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 18px;
}

@media (max-width: 720px) {
  .tshirt-grid {
    grid-template-columns: 1fr;
  }
}





/* =========================================================
   RULES + TERMS PAGE FIX
   Paste at the very bottom of styles.css
   ========================================================= */

/* Removes the giant blank header space on policy pages */
.policy-page .site-header {
  min-height: 0 !important;
  height: auto !important;
}

/* Policy page background */
.policy-page {
  background:
    linear-gradient(180deg, rgba(8, 9, 7, 1), rgba(14, 13, 9, 1));
}

/* Hero section for Rules / Terms pages */
.policy-page .section-image.policy-hero {
  min-height: 0 !important;
  height: auto !important;
  display: block !important;
  align-items: initial !important;

  padding-top: calc(var(--nav-height) + 55px) !important;
  padding-bottom: 70px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;

  border-top: 0 !important;
}

/* Keeps hero text above overlay */
.policy-page .policy-hero .container {
  position: relative;
  z-index: 2;
}

/* Remove accidental top spacing */
.policy-page .policy-hero .section-kicker {
  margin-top: 0;
  margin-bottom: 18px;
}

/* Main title */
.policy-page .policy-hero h1 {
  max-width: 900px;
  margin: 0;
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: 0.92;
}

/* Hero paragraph */
.policy-page .policy-hero p {
  max-width: 720px;
  margin-top: 18px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

/* Main content spacing */
.policy-page .policy-section {
  padding-top: 70px !important;
  padding-bottom: 90px !important;
}

/* Card layout */
.policy-content {
  display: grid;
  gap: 22px;
}

.policy-card {
  border: 1px solid rgba(178, 139, 46, 0.34);
  border-radius: 20px;
  padding: clamp(22px, 4vw, 34px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025));
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.policy-card h2,
.policy-card h3 {
  margin-top: 0;
  color: var(--cream);
  font-family: Anton, Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.policy-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.policy-card h3 {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.policy-card p {
  color: var(--muted);
}

/* Rule list styling */
.policy-list {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.policy-list li {
  position: relative;
  padding-left: 34px;
  color: var(--cream);
  line-height: 1.65;
}

.policy-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 12px;
  height: 12px;
  border: 2px solid var(--gold-bright);
  transform: rotate(45deg);
}

/* Highlight note */
.policy-note {
  margin-top: 24px;
  border-left: 4px solid var(--gold-bright);
  padding: 16px 18px;
  background: rgba(178, 139, 46, 0.12);
  color: var(--cream);
}

/* Bottom buttons */
.policy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* Mobile */
@media (max-width: 720px) {
  .policy-page .section-image.policy-hero {
    padding-top: calc(var(--nav-height) + 35px) !important;
    padding-bottom: 55px !important;
  }

  .policy-page .policy-hero h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .policy-page .policy-section {
    padding-top: 50px !important;
    padding-bottom: 70px !important;
  }

  .policy-actions {
    flex-direction: column;
  }

  .policy-actions .btn {
    width: 100%;
  }
}
