/* =========================================================
   1st Class Whitetails of Ohio - Global Styles
   Palette:  off-white #fafafa | charcoal #1a1e17 | gold #c9a84c | forest #2a3d1e
   ========================================================= */

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', 'Open Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: #1a1e17;
  background: #fafafa;
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

:root {
  --bg: #fafafa;
  --bg-alt: #f3f1ec;
  --dark: #1a1e17;
  --dark-soft: #2a2e27;
  --gold: #c9b885;
  --gold-bright: #d9c89a;
  --forest: #2a3d1e;
  --text: #1a1e17;
  --text-muted: #5b5f56;
  --border: #e4e1d8;
  --container: 1280px;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: 'Oswald', 'Bebas Neue', 'Arial Narrow', sans-serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: var(--dark);
  text-transform: uppercase;
}

/* Saira Stencil One for primary headlines only - keep Oswald for smaller headings/UI */
h1, h2 {
  font-family: 'Saira Stencil One', 'Oswald', 'Bebas Neue', sans-serif;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); margin-bottom: .6rem; }
h4 { font-size: 1.1rem; margin-bottom: .5rem; }

p { margin-bottom: 1rem; color: var(--text-muted); }
p.lead { font-size: 1.15rem; color: var(--dark-soft); }

.gold { color: var(--gold); }
.uppercase { text-transform: uppercase; letter-spacing: .08em; }

.eyebrow {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .8rem;
}

/* ---------- Layout Helpers ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}

.section--dark {
  background: var(--dark);
  color: #e8e6e0;
}
.section--dark h1,
.section--dark h2,
.section--dark h3 { color: #fff; }
.section--dark p  { color: #c8c6bf; }

.section--alt { background: var(--bg-alt); }

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: .95rem 1.8rem;
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: all .25s ease;
  cursor: pointer;
  background: transparent;
}
.btn + .btn { margin-left: .6rem; }

.btn--gold {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-bright);
  border-color: var(--gold-bright);
  transform: translateY(-2px);
}

.btn--outline {
  border-color: #fff;
  color: #fff;
}
.btn--outline:hover {
  background: #fff;
  color: var(--dark);
}

.btn--dark {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.btn--dark:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.btn--outline-gold {
  border: 3px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ---------- Announcement Bar ---------- */
.announce {
  position: sticky;
  top: 0;
  z-index: 101;
  background: #1a1a1a;
  color: var(--gold);
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .7rem 1rem;
  line-height: 1.3;
}
.announce a {
  color: var(--gold);
  margin-left: .6rem;
  border-bottom: 1px solid rgba(201, 184, 133, 0.4);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
  white-space: nowrap;
}
.announce a:hover {
  color: var(--gold-bright);
  border-color: var(--gold-bright);
}
.announce .sep {
  color: rgba(201, 184, 133, 0.4);
  margin: 0 .6rem;
}
@media (max-width: 640px) {
  .announce { font-size: .7rem; padding: .35rem .8rem; letter-spacing: .08em; line-height: 1.2; }
  .announce .sep { margin: 0 .4rem; }
  .announce .hide-mobile { display: none; }
  .announce a { margin-left: .5rem; padding-bottom: 0; border-bottom: 0; }
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 40px;
  z-index: 100;
  background: rgba(26, 30, 23, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
}
@media (max-width: 640px) {
  .site-header { top: 1.6rem; }
}

.nav {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 1rem 1.5rem;
  max-width: var(--container);
  margin: 0 auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.nav__logo img { height: 60px; width: auto; display: block; }
.nav__logo-text span { color: var(--gold); }

.nav__menu {
  display: flex;
  gap: 2rem;
  align-items: center;
  list-style: none;
  margin-left: 100px;
}

.nav__link {
  color: #e8e6e0;
  font-family: 'Oswald', sans-serif;
  font-size: .9rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .5rem 0;
  position: relative;
  transition: color .2s;
}
.nav__link:hover,
.nav__link.active { color: var(--gold); }
.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
}

.nav__dropdown { position: relative; }
.nav__dropdown-toggle::after {
  content: '▾';
  margin-left: .35rem;
  font-size: .75rem;
}
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--dark-soft);
  min-width: 260px;
  padding: .5rem 0;
  border: 1px solid rgba(201, 168, 76, 0.2);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all .25s ease;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav__dropdown-menu a {
  display: block;
  padding: .8rem 1.2rem;
  color: #e8e6e0;
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: all .2s;
}
.nav__dropdown-menu a:hover {
  background: var(--gold);
  color: var(--dark);
}

.nav__cta {
  background: var(--gold);
  color: var(--dark) !important;
  padding: .6rem 1.2rem !important;
  border-radius: 2px;
  font-weight: 600;
  transition: all .2s;
}
.nav__cta:hover { background: var(--gold-bright); }

.nav__toggle {
  display: none;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
}

.nav__backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.nav__backdrop.is-open { display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: var(--dark);
}
.hero--tall { min-height: 720px; }
.hero--short { min-height: 360px; }
.hero--short .hero__content { padding-top: .75rem; padding-bottom: .75rem; }
.hero--short .btn-row {
  display: flex;
  justify-content: center;
  gap: .75rem;
  flex-wrap: wrap;
}
.hero--short .btn-row .btn {
  flex: 1;
  max-width: 220px;
  text-align: center;
}
.hero--short .btn-row .btn--gold {
  font-size: 1.09rem;
}
.hero--short .btn-row .btn--outline-gold {
  font-size: .98rem;
  letter-spacing: .1em;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: calc(55% + 40px) 40%;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.15);
}

/* Multi-image collage variant of the hero background */
.hero__collage {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: transparent;
}
.hero__collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 700px) {
  .hero__collage {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,30,23,.45) 0%, rgba(26,30,23,.75) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 2rem 1.5rem;
}

.hero h1 { color: #fff; margin-bottom: 1rem; }
.hero p  { color: #e8e6e0; font-size: 1.15rem; max-width: 700px; margin: 0 auto 1.6rem; }
.hero .btn-row { margin-top: 1.6rem; }

/* ---------- Grids & Cards ---------- */
.grid {
  display: grid;
  gap: 2rem;
}
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.08);
}
.card img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.card__body { padding: 1.5rem; }
.card__link {
  display: inline-block;
  margin-top: .5rem;
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.card__link::after { content: ' →'; transition: transform .2s; display: inline-block; }
.card__link:hover::after { transform: translateX(4px); }

/* Split sections (image + text) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split--reverse .split__img { order: 2; }
.split__img img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.gallery img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  transition: transform .3s ease;
}
.gallery a { overflow: hidden; display: block; }
.gallery a:hover img { transform: scale(1.05); }

/* ---------- Callout strip ---------- */
.callout {
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 2rem;
  text-align: center;
  color: #fff;
  overflow: hidden;
  background: #262923 !important;
}
.callout__bg {
  position: absolute; inset: 0;
  object-fit: cover;
  width: 100%; height: 100%;
  opacity: .35;
  z-index: 0;
}
.callout__inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.callout h2 { color: var(--gold); }
.callout p { color: #fff; }

/* ---------- Stat / Fact bar ---------- */
.factbar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: var(--dark);
  color: #fff;
  text-align: center;
}
.factbar__item { padding: 1rem; border-right: 1px solid rgba(255,255,255,.1); }
.factbar__item:last-child { border-right: 0; }
.factbar__value {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: .4rem;
}
.factbar__label {
  font-size: .8rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #c8c6bf;
}

/* ---------- Pricing / Rate Tables ---------- */
.rate-group { margin-bottom: 3rem; }
.rate-group h3 {
  border-bottom: 2px solid var(--gold);
  padding-bottom: .6rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.rate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.rate-card {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--gold);
  padding: 1.6rem;
}
.rate-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: .3rem;
}
.rate-card .date { font-size: .9rem; color: var(--text-muted); margin-bottom: .8rem; }
.rate-card .price {
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  color: var(--forest);
  font-weight: 600;
}
.rate-card .meta {
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- Prize Structure ---------- */
.prizes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.prize {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 1.6rem;
  text-align: center;
}
.prize--first {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  transform: scale(1.03);
}
.prize__place {
  font-family: 'Oswald', sans-serif;
  font-size: .9rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.prize__amount {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

/* ---------- How it Works / Numbered Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}
.step {
  position: relative;
  padding: 2rem 1.5rem 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
}
.step__num {
  position: absolute;
  top: -20px;
  left: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Lists ---------- */
.check-list {
  list-style: none;
  padding: 0;
}
.check-list li {
  padding-left: 1.8rem;
  margin-bottom: .7rem;
  position: relative;
  color: var(--text-muted);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

/* ---------- Camp Friends Grid ---------- */
.friends-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.friend {
  text-align: center;
  background: #fff;
  padding: 1.5rem;
  border: 1px solid var(--border);
  transition: all .25s;
}
.friend:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.friend img {
  aspect-ratio: 1/1;
  width: 100%;
  object-fit: cover;
  margin-bottom: 1rem;
  filter: grayscale(20%);
  transition: filter .25s;
}
.friend:hover img { filter: grayscale(0); }
.friend__name {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .3rem;
  color: var(--dark);
}
.friend__title {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ---------- Contact / Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
#book, #sponsor { scroll-margin-top: 132px; }
.contact-info h3 { margin-bottom: .5rem; }
.contact-info p { margin-bottom: 1.4rem; }
.contact-info a.phone {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: .05em;
  margin-bottom: .5rem;
}
.contact-info a.email {
  display: inline-block;
  color: var(--dark);
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

.map-embed {
  display: flex;
  flex-direction: column;
}
.map-embed iframe {
  width: 100%;
  flex: 1;
  min-height: 400px;
  border: 0;
}
@media (max-width: 560px) {
  .map-embed iframe { height: 260px; }
}

.form {
  display: grid;
  gap: 1rem;
  background: #fff;
  padding: 2rem;
  border: 1px solid var(--border);
}
.form label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: .3rem;
}
.form input,
.form textarea {
  width: 100%;
  padding: .9rem 1rem;
  border: 1px solid var(--border);
  background: #fafafa;
  font-family: inherit;
  font-size: 1rem;
  color: var(--dark);
  transition: border-color .2s;
}
.form input:focus,
.form textarea:focus {
  outline: 0;
  border-color: var(--gold);
  background: #fff;
}
.form textarea { min-height: 140px; resize: vertical; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: #c8c6bf;
  padding: 4rem 0 2rem;
  font-size: .95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer__brand h4 {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  letter-spacing: .08em;
  margin-bottom: .8rem;
}
.footer__brand h4 span { color: var(--gold); }
.footer__tag {
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-top: 1rem;
}
.site-footer h5 {
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: .9rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: .5rem; }
.site-footer a { color: #c8c6bf; transition: color .2s; }
.site-footer a:hover { color: var(--gold); }

.footer__cta {
  display: inline-block;
  background: var(--gold);
  color: var(--dark) !important;
  padding: .8rem 1.4rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-size: .9rem;
  margin-top: .5rem;
}
.footer__cta:hover { background: var(--gold-bright); }

.social-icons {
  display: flex;
  gap: .8rem;
  margin-top: 1rem;
}
.social-icons a {
  width: 38px; height: 38px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all .2s;
}
.social-icons a:hover {
  background: var(--gold);
  color: var(--dark);
}
.social-icons svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.5rem;
  text-align: center;
  font-size: .85rem;
  color: #8b8d85;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split--reverse .split__img { order: 0; }
  .friends-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .factbar { grid-template-columns: repeat(2, 1fr); }
  .factbar__item { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); }

  .nav__toggle { display: block; position: relative; z-index: 102; margin-left: auto; padding: .6rem; min-width: 44px; min-height: 44px; }
  .nav__menu {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 80%;
    max-width: 340px;
    background: var(--dark);
    padding: 7rem 1.5rem 2rem;
    transform: translateX(110%);
    transition: transform .3s ease;
    overflow-x: hidden;
    border-left: 1px solid rgba(201, 168, 76, 0.2);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    z-index: 99;
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__menu > li { width: 100%; border-bottom: 1px solid rgba(255,255,255,.08); }
  .nav__link { display: block; padding: 1rem 0; width: 100%; }
  .nav__dropdown-menu,
  .nav__dropdown:hover .nav__dropdown-menu,
  .nav__dropdown:focus-within .nav__dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    background: transparent;
    border: 0;
    padding: 0 0 .5rem 1rem;
    min-width: 0;
    display: block;
  }
  .nav__dropdown-toggle::after { display: inline-block; transform: rotate(180deg); }
  .nav__dropdown-menu a { padding: .6rem 0; }
  .nav__cta { display: block; width: 100%; text-align: left; margin-top: .5rem; }
}

@media (max-width: 560px) {
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .friends-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .factbar { grid-template-columns: repeat(2, 1fr); }
  .factbar__item { border-right: 0; border-bottom: 0; }
  .factbar__item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .footer-grid { grid-template-columns: 1fr; }
  .prize--first { transform: none; }
  .btn + .btn { margin-left: 0; margin-top: .6rem; }
  .btn-row .btn { display: block; width: 100%; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
img.lazy { opacity: 0; transition: opacity .4s; }
img.lazy.loaded { opacity: 1; }

/* =============================================================
   $100K CHALLENGE PAGE SPECIFIC STYLES
   ============================================================= */

/* Hero override for challenge */
.hero--challenge {
  min-height: 92vh;
  background: #0a0c09;
}
.hero--challenge::after {
  background: linear-gradient(180deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.7) 100%);
}
@media (max-width: 760px) {
  .hero--challenge {
    min-height: auto;
    padding: 0 0 1.4rem;
    align-items: flex-start;
  }
  .hero--challenge .hero__content {
    padding: .5rem 1.25rem .6rem;
    display: flex;
    flex-direction: column;
  }

  /* Mobile reorder: prize block moves above the headline, countdown + CTAs follow */
  .hero--challenge .sponsor-presents   { order: 1; margin-bottom: .7rem; }
  .hero--challenge .hero-prize-block   { order: 2; margin: .4rem 0 .2rem; }
  .hero--challenge h1                  { order: 3; margin: .2rem 0 .5rem; }
  .hero--challenge .subhead            { order: 4; margin: 0 0 1rem; font-size: .95rem; }
  .hero--challenge .countdown          { order: 5; margin: 0 0 1rem; }
  .hero--challenge .btn-row            { order: 6; margin-top: .2rem; }

  /* Hide "Tag Team", "Grand Prize" label, + "$150,000 Total Prize Pool" prefix on mobile */
  .hero--challenge .hero-headline__tag { display: none; }
  .hero--challenge .hero-prize-label   { display: none; }
  .hero--challenge .subhead__prize     { display: none; }

  /* Hide desktop-only CTA on mobile (mobile-only shows via normal cascade) */
  .show-on-desktop { display: none !important; }
}
@media (min-width: 761px) {
  .show-on-mobile { display: none !important; }
}

/* Floating photo blocks */
.hero__floats {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.float {
  position: absolute;
  overflow: hidden;
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(201, 184, 133, 0.15);
  transform: rotate(var(--r, 0deg));
  will-change: transform;
}
.float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(1.05) contrast(1.02);
}

/* Size tiers */
.float--xl { width: 460px; height: 460px; }
.float--lg { width: 360px; height: 360px; }
.float--md { width: 280px; height: 280px; }
.float--sm { width: 220px; height: 220px; }

/* Positions + per-element rotation + animations */
.float--tl { --r: -4deg; top: 2%;   left: 3%;   animation: float-a 12s ease-in-out infinite; }
.float--tr { --r:  3deg; top: 4%;   right: 3%;  animation: float-b 14s ease-in-out infinite; }
.float--ml { --r: -2deg; top: 40%;  left: 2%;   animation: float-c 11s ease-in-out infinite; }
.float--mr { --r:  5deg; top: 34%;  right: 2%;  animation: float-a 13s ease-in-out infinite reverse; }
.float--bl { --r: -3deg; bottom: 2%; left: 10%; animation: float-b 15s ease-in-out infinite reverse; }
.float--br { --r:  2deg; bottom: 3%; right: 6%; animation: float-c 10s ease-in-out infinite; }

@keyframes float-a {
  0%, 100% { transform: translateY(0)     rotate(var(--r, 0deg)); }
  50%      { transform: translateY(-20px) rotate(var(--r, 0deg)); }
}
@keyframes float-b {
  0%, 100% { transform: translate(0, 0)        rotate(var(--r, 0deg)); }
  50%      { transform: translate(-10px, 14px) rotate(var(--r, 0deg)); }
}
@keyframes float-c {
  0%, 100% { transform: translateY(0)    rotate(var(--r, 0deg)); }
  50%      { transform: translateY(16px) rotate(var(--r, 0deg)); }
}

@media (prefers-reduced-motion: reduce) {
  .float { animation: none !important; }
}

@media (max-width: 760px) {
  /* On mobile the collage crowds the content - hide it entirely.
     The logo + headline + glowing $100K carry the hero on their own. */
  .hero__floats { display: none; }
}
.hero--challenge h1 {
  font-size: clamp(2.6rem, 7vw, 6.2rem);
  letter-spacing: -.005em;
  line-height: .95;
  text-shadow: 0 4px 40px rgba(0,0,0,.6);
}
.hero--challenge .subhead {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.15rem, 2.4vw, 1.7rem);
  color: var(--gold);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 1rem auto 1.6rem;
  font-weight: 500;
}
.hero--challenge .subhead strong { font-weight: 700; }
.hero--challenge .urgency {
  display: inline-block;
  background: rgba(201, 184, 133, 0.1);
  border: 1px solid rgba(201, 184, 133, 0.5);
  padding: .55rem 1.3rem;
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

/* Title sponsor placement */
.sponsor-presents {
  display: block;
  text-align: center;
  margin-bottom: 1.6rem;
  line-height: 1;
}
.sponsor-presents__logo {
  display: inline-block;
  line-height: 0;
}
.sponsor-presents__logo img {
  height: 180px;
  width: auto;
  display: block;
  filter:
    drop-shadow(0 0 6px rgba(255, 255, 255, 0.55))
    drop-shadow(0 0 14px rgba(255, 255, 255, 0.35))
    drop-shadow(0 0 30px rgba(255, 255, 255, 0.18));
}
.sponsor-presents__label {
  display: block;
  margin-top: 1rem;
  font-family: 'Oswald', sans-serif;
  font-size: .78rem;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}
@media (max-width: 560px) {
  .sponsor-presents { margin-bottom: 1rem; }
  .sponsor-presents__logo img {
    height: auto;
    width: clamp(160px, 46vw, 236px);
    filter:
      drop-shadow(0 0 3px rgba(255, 255, 255, 0.5))
      drop-shadow(0 0 8px rgba(255, 255, 255, 0.3))
      drop-shadow(0 0 15px rgba(255, 255, 255, 0.16));
  }
  .sponsor-presents__label { font-size: .68rem; letter-spacing: .32em; margin-top: .6rem; }
}

/* Entry page hero variant (shorter than challenge, with bg image) */
.hero--entry { min-height: 620px; }
.hero--entry::after {
  background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.85) 100%);
}

/* Compact step cards - dark translucent variant used on entry page */
.steps--compact .step {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(201, 184, 133, 0.22);
  padding: 1.2rem 1.4rem 1.1rem;
}
.steps--compact .step h3 { color: var(--gold); margin-bottom: .3rem; }
.steps--compact .step p  { color: #c8c6bf; margin: 0; }
.steps--compact .step__num {
  background: var(--gold);
  color: var(--dark);
}

/* Tighter mobile spacing + compact step layout on the Entry page */
@media (max-width: 760px) {
  body.page-entry .section { padding: 2.8rem 0; }
  body.page-entry .parallax { padding: 3rem 0; }
  body.page-entry .hero--entry { min-height: auto; padding: 3rem 0 3.5rem; }
  body.page-entry .hero__content { padding: 1rem 1.25rem; }

  body.page-entry .steps--compact {
    grid-template-columns: 1fr;
    gap: .7rem;
  }
  body.page-entry .steps--compact .step {
    padding: .85rem 1rem .85rem 3.5rem;
    position: relative;
  }
  body.page-entry .steps--compact .step__num {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
  body.page-entry .steps--compact .step h3 {
    font-size: 1rem;
    margin-bottom: .2rem;
  }
  body.page-entry .steps--compact .step p { font-size: .88rem; }
  body.page-entry .section-head { margin-bottom: 1.8rem; }
  body.page-entry .split { gap: 1.5rem; }
}

/* Split variant that stretches the image column to match content height */
.split--fill { align-items: stretch; }
.split--fill .split__img { display: flex; }
.split--fill .split__img img {
  aspect-ratio: auto;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

/* Entry page small sponsor badge */
.entry-hero__sponsor {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: .5rem 1rem;
  border: 1px solid rgba(201, 184, 133, 0.25);
  background: rgba(201, 184, 133, 0.05);
}
.entry-hero__sponsor img {
  height: 28px;
  width: auto;
  filter:
    drop-shadow(0 0 3px rgba(255, 255, 255, 0.4))
    drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}
.entry-hero__sponsor span {
  font-family: 'Oswald', sans-serif;
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Mobile-only "Giants" trophy collage between The Event and Prize Structure */
.giants { display: none; }
@media (max-width: 760px) {
  .giants {
    display: block;
    background: #0a0c09;
    padding: 3rem 0 3.2rem;
  }
  .giants .container { text-align: center; padding: 0 1.25rem; }
  .giants h2 {
    color: var(--gold);
    font-size: clamp(1.8rem, 6vw, 2.4rem);
    line-height: 1.05;
    margin-bottom: .7rem;
  }
  .giants p {
    color: #c8c6bf;
    max-width: 420px;
    margin: 0 auto 1.8rem;
    font-size: 1rem;
  }
  .giants__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }
  .giants__grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    filter: saturate(1.05);
  }
}

/* Mobile-only big-deer feature between hero and fact bar */
.big-deer { display: none; }
@media (max-width: 760px) {
  .big-deer {
    display: block;
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #0a0c09;
    line-height: 0;
  }
  .big-deer img {
    width: 100%;
    height: auto;
    display: block;
  }
  .big-deer::before,
  .big-deer::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 90px;
    z-index: 1;
    pointer-events: none;
  }
  .big-deer::before {
    top: 0;
    background: linear-gradient(180deg, rgba(10,12,9,1) 0%, rgba(10,12,9,0) 100%);
  }
  .big-deer::after {
    bottom: 0;
    background: linear-gradient(0deg, rgba(10,12,9,1) 0%, rgba(10,12,9,0) 100%);
  }
}

/* Hero-prize (huge animated $100K hook) */
.hero-prize-block {
  display: block;
  margin: 1.3rem 0 .8rem;
  line-height: 1;
}
.hero-prize-label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: .78rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: #c8c6bf;
  margin-bottom: .3rem;
}
.hero-prize {
  display: inline-block;
  font-family: 'Saira Stencil One', 'Oswald', sans-serif;
  font-size: clamp(3.4rem, 10vw, 8rem);
  font-weight: 400;
  color: var(--gold);
  line-height: .95;
  letter-spacing: .02em;
  animation: gold-shimmer 3s ease-in-out infinite;
  font-variant-numeric: tabular-nums;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: .8rem;
  margin: 2rem 0 2.2rem;
  flex-wrap: wrap;
}
.countdown__unit {
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 184, 133, 0.35);
  padding: 1rem 1.2rem;
  min-width: 92px;
  text-align: center;
}
.countdown__value {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown__label {
  display: block;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #c8c6bf;
  margin-top: .4rem;
}
@media (max-width: 640px) {
  .countdown { gap: .5rem; }
  .countdown__unit { min-width: 68px; padding: .8rem .5rem; }
  .countdown__value { font-size: 1.7rem; }
  .countdown__label { font-size: .6rem; letter-spacing: .15em; }
}

/* Pulsing / XL button */
.btn--pulse {
  position: relative;
  animation: btn-pulse 2.6s ease-out infinite;
}
@keyframes btn-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(201, 184, 133, 0.6); }
  70%  { box-shadow: 0 0 0 16px rgba(201, 184, 133, 0); }
  100% { box-shadow: 0 0 0 0 rgba(201, 184, 133, 0); }
}
.btn--xl {
  font-size: 1.05rem;
  padding: 1.2rem 2.4rem;
}

/* Featured fact-bar stat */
.factbar__item--featured {
  background: linear-gradient(180deg, rgba(201, 184, 133, 0.14) 0%, rgba(201, 184, 133, 0) 100%);
  border-right-color: rgba(201, 184, 133, 0.25);
}
.factbar__item--featured .factbar__value {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  color: var(--gold);
  text-shadow: 0 0 30px rgba(201, 184, 133, 0.5);
}
.factbar__item--featured .factbar__label { color: var(--gold); letter-spacing: .18em; }

/* Prize Podium */
.prize-section-head h2 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: .5rem;
}
.prize-podium {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  gap: 1rem;
  align-items: end;
  margin: 3.5rem auto 2rem;
  max-width: 980px;
}
.podium {
  text-align: center;
  padding: 2rem 1.2rem;
  border: 1px solid rgba(201, 184, 133, 0.22);
  background: rgba(201, 184, 133, 0.04);
  position: relative;
}
.podium--first {
  background: linear-gradient(180deg, rgba(201, 184, 133, 0.22) 0%, rgba(201, 184, 133, 0.06) 100%);
  border: 2px solid var(--gold);
  padding: 3.2rem 1.4rem 2.4rem;
  box-shadow: 0 0 70px rgba(201, 184, 133, 0.25), inset 0 0 60px rgba(201, 184, 133, 0.08);
}
.podium--first::before {
  content: '1ST PLACE';
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--dark);
  padding: .4rem 1.1rem;
  font-family: 'Oswald', sans-serif;
  font-size: .8rem;
  letter-spacing: .22em;
  font-weight: 700;
  white-space: nowrap;
}
.podium__label {
  font-family: 'Oswald', sans-serif;
  font-size: .85rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #c8c6bf;
  margin-bottom: .6rem;
}
.podium__amount {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}
.podium--first .podium__label { color: var(--gold); }
.podium--first .podium__amount {
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  animation: gold-shimmer 3s ease-in-out infinite;
  display: inline-block;
}
@keyframes gold-shimmer {
  0%, 100% {
    color: var(--gold);
    text-shadow: 0 0 8px rgba(201, 184, 133, 0.35), 0 0 22px rgba(201, 184, 133, 0.15);
  }
  50% {
    color: #e8d9a8;
    text-shadow: 0 0 12px rgba(255, 230, 170, 0.6), 0 0 34px rgba(201, 184, 133, 0.7);
  }
}
.pool-total {
  text-align: center;
  margin-top: 2.5rem;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #fff;
}
.pool-total strong { color: var(--gold); font-weight: 700; font-size: 1.15em; }
@media (max-width: 700px) {
  .prize-podium { grid-template-columns: 1fr; gap: 1.5rem; align-items: stretch; }
  .podium--first { order: -1; padding: 2.6rem 1.2rem 2rem; }
}

/* Icon steps */
.step__icon {
  width: 46px;
  height: 46px;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

/* Parallax immersive section */
.parallax {
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  color: #fff;
  overflow: hidden;
}
.parallax::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.7) 0%, rgba(0,0,0,.88) 100%);
}
.parallax > .container { position: relative; z-index: 1; }
.parallax h2 { color: #fff; }
.parallax p { color: #e8e6e0; }
@media (max-width: 960px) {
  .parallax { background-attachment: scroll; }
}

/* Confirmed competitor cards */
.confirmed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.confirmed-card {
  position: relative;
  background: #2a2e27;
  border: 2px solid var(--gold);
  overflow: hidden;
  box-shadow: 0 0 40px rgba(201, 184, 133, 0.15);
  transition: transform .3s ease, box-shadow .3s ease;
}
.confirmed-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 70px rgba(201, 184, 133, 0.3);
}
.confirmed-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--dark);
  padding: .35rem .85rem;
  font-family: 'Oswald', sans-serif;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  z-index: 2;
}
.confirmed-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}
.confirmed-card__body { padding: 2rem; }
.confirmed-card__body h3 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #fff;
  margin-bottom: .4rem;
}
.confirmed-card__credential {
  display: block;
  color: var(--gold);
  font-family: 'Oswald', sans-serif;
  font-size: .92rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
@media (max-width: 700px) {
  .confirmed-grid { grid-template-columns: 1fr; }
}

/* Social proof grid */
.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2.5rem;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.proof-item {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid rgba(201, 184, 133, 0.25);
  background: rgba(201, 184, 133, 0.03);
  transition: all .25s;
}
.proof-item:hover {
  border-color: var(--gold);
  background: rgba(201, 184, 133, 0.08);
}
.proof-item__icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 1rem;
  color: var(--gold);
  display: block;
}
.proof-item__title {
  font-family: 'Oswald', sans-serif;
  font-size: .95rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}
@media (max-width: 820px) { .social-proof-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .social-proof-grid { grid-template-columns: 1fr; } }

/* Proof stat highlight (sold-out track record) */
.proof-stat {
  text-align: center;
  padding: 3rem 1.5rem;
  border: 1px solid rgba(201, 184, 133, 0.35);
  background: linear-gradient(180deg, rgba(201, 184, 133, 0.08) 0%, rgba(201, 184, 133, 0) 100%);
}
.proof-stat__headline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1.25;
  margin-bottom: 1rem;
  font-weight: 700;
}
.proof-stat__tag {
  color: var(--dark);
  font-size: 1.1rem;
  font-weight: 500;
  margin: 0;
}

/* Final CTA section */
.cta-final {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7.5rem) 1.5rem;
  text-align: center;
  background: #0d0f0c;
  color: #fff;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201, 184, 133, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}
.cta-final > * { position: relative; z-index: 1; }
.cta-final h2 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1;
  letter-spacing: .01em;
}
.cta-final h2 .gold-word {
  color: var(--gold);
  animation: gold-shimmer 3s ease-in-out infinite;
  display: inline-block;
}
.cta-final .subline {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(.95rem, 1.8vw, 1.2rem);
  color: var(--gold);
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.phone-huge {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: var(--gold);
  letter-spacing: .04em;
  margin: 1.2rem 0 2rem;
  padding-bottom: .2rem;
  border-bottom: 2px solid rgba(201, 184, 133, 0.3);
  transition: all .2s;
  font-weight: 700;
}
.phone-huge:hover {
  color: var(--gold-bright);
  border-bottom-color: var(--gold);
}

/* Mobile sticky CTA */
.mobile-cta { display: none; }
@media (max-width: 760px) {
  .mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    background: var(--dark);
    border-top: 1px solid rgba(201, 184, 133, 0.3);
    padding: .6rem;
    gap: .5rem;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
  }
  .mobile-cta a {
    flex: 1;
    padding: .9rem .5rem;
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: .85rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 600;
  }
  .mobile-cta a:first-child {
    background: var(--gold);
    color: var(--dark);
  }
  .mobile-cta a:last-child {
    border: 1px solid var(--gold);
    color: var(--gold);
  }
  body.has-mobile-cta { padding-bottom: 66px; }
}

/* Fade-in-on-scroll */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up--d1 { transition-delay: .1s; }
.fade-up--d2 { transition-delay: .2s; }
.fade-up--d3 { transition-delay: .3s; }

/* ---------- Featured Partners (tier below Premier) ---------- */
.partner-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 1rem 1.5rem;
  min-height: 130px;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease;
  text-decoration: none;
}
.partner-tile img {
  width: auto;
  height: 72px;
  max-width: 88%;
  object-fit: contain;
}
.partner-tile--light { background: #fff; }
.partner-tile--dark  { background: #20241d; }
.partner-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,.14);
}
@media (max-width: 760px) {
  .featured-partners-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: .8rem !important;
  }
  .partner-tile {
    min-height: 95px;
    padding: .75rem .9rem;
  }
  .partner-tile img {
    height: 44px;
  }
}

/* =========================================================
   Cinematic Hero (homepage)
   ========================================================= */
.hero.hero--cinematic {
  display: block;
  min-height: clamp(640px, 92vh, 920px);
  padding: clamp(5rem, 10vh, 8rem) 1.25rem clamp(5rem, 10vh, 7rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-cinema__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-cinema__bg {
  position: absolute;
  inset: -3%;
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.05);
  animation: heroCineKenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroCineKenBurns {
  0%   { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.12) translate(-1.5%, -1%); }
}
.hero-cinema__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,12,9,.35) 0%, rgba(10,12,9,.25) 35%, rgba(10,12,9,.68) 100%);
}
.hero-cinema__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 35%, rgba(0,0,0,.55) 100%);
  pointer-events: none;
}

/* --- Floating Challenge announcement pill (top of hero) --- */
.hero-cinema__pill {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .55rem 1.15rem .55rem .85rem;
  margin-bottom: 1.5rem;
  background: rgba(201,168,76,.14);
  border: 1px solid rgba(201,168,76,.55);
  border-radius: 999px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  letter-spacing: .03em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .25s ease, background-color .25s ease, border-color .25s ease;
  text-decoration: none;
  max-width: 100%;
  align-self: center;
}
.hero-cinema__pill:hover {
  background: rgba(201,168,76,.22);
  border-color: rgba(201,168,76,.9);
  transform: translateY(-2px);
}
.hero-cinema__pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(201,168,76,.7);
  animation: heroCinePillPulse 2.2s ease-out infinite;
  flex: 0 0 8px;
}
@keyframes heroCinePillPulse {
  0%   { box-shadow: 0 0 0 0 rgba(201,168,76,.7); }
  70%  { box-shadow: 0 0 0 10px rgba(201,168,76,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
}
.hero-cinema__pill-text strong { color: var(--gold); font-weight: 700; letter-spacing: .04em; }
.hero-cinema__pill-arrow { color: var(--gold); font-weight: 600; transition: transform .25s ease; }
.hero-cinema__pill:hover .hero-cinema__pill-arrow { transform: translateX(4px); }

/* --- Content --- */
.hero-cinema__content {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
}
.hero-cinema__kicker {
  font-family: 'Oswald', sans-serif;
  font-size: .78rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: heroCineFadeUp .8s .15s ease-out forwards;
}
.hero-cinema__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .15em;
  font-family: 'Saira Stencil One', 'Oswald', sans-serif;
  font-weight: 400;
  font-size: clamp(2.6rem, 8vw, 6rem);
  line-height: 1;
  letter-spacing: .015em;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0,0,0,.55);
}
.hero-cinema__title-line {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: heroCineFadeUp .9s ease-out forwards;
}
.hero-cinema__title-line:nth-child(1) { animation-delay: .25s; }
.hero-cinema__title-line:nth-child(2) { animation-delay: .45s; }
.hero-cinema__title-line--gold { color: var(--gold); }
.hero-cinema__subhead {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.55;
  color: #e8e6e0;
  opacity: 0;
  animation: heroCineFadeUp .8s .6s ease-out forwards;
}
.hero-cinema__subhead strong { color: var(--gold); font-weight: 600; }
.hero-cinema__cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: .25rem;
  opacity: 0;
  animation: heroCineFadeUp .8s .75s ease-out forwards;
}

/* --- Stats strip --- */
.hero-cinema__stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(1rem, 4vw, 3rem);
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.12);
  width: min(100%, 880px);
  opacity: 0;
  animation: heroCineFadeUp .9s .95s ease-out forwards;
}
.hero-cinema__stat {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  min-width: 110px;
}
.hero-cinema__stat-value {
  font-family: 'Saira Stencil One', 'Oswald', sans-serif;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: #fff;
  letter-spacing: .02em;
  line-height: 1;
}
.hero-cinema__stat--featured .hero-cinema__stat-value {
  color: var(--gold);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
}
.hero-cinema__stat-label {
  font-family: 'Oswald', sans-serif;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #c8c6bf;
}

/* --- Scroll indicator --- */
.hero-cinema__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  color: #c8c6bf;
  text-decoration: none;
  z-index: 2;
  opacity: 0;
  animation: heroCineFadeUp 1s 1.3s ease-out forwards;
}
.hero-cinema__scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(180deg, transparent, var(--gold));
  position: relative;
  overflow: hidden;
}
.hero-cinema__scroll-line::after {
  content: '';
  position: absolute;
  top: -32px;
  left: 0;
  width: 100%;
  height: 12px;
  background: var(--gold);
  animation: heroCineScrollDot 2s ease-in-out infinite;
}
@keyframes heroCineScrollDot {
  0%   { top: -12px; opacity: 0; }
  30%  { opacity: 1; }
  100% { top: 32px; opacity: 0; }
}
.hero-cinema__scroll-label {
  font-family: 'Oswald', sans-serif;
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
}

@keyframes heroCineFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* --- Mobile tuning --- */
@media (max-width: 720px) {
  .hero.hero--cinematic { min-height: 100svh; }
  .hero-cinema__pill {
    font-size: .72rem;
    padding: .45rem .85rem .45rem .65rem;
    margin-bottom: 1.5rem;
  }
  .hero-cinema__title { letter-spacing: .01em; }
  .hero-cinema__cta .btn { width: 100%; max-width: 320px; }
  .hero-cinema__stats {
    gap: 1.2rem 2rem;
    padding-top: 1.5rem;
    margin-top: 1.5rem;
  }
  .hero-cinema__stat { min-width: 95px; }
  .hero-cinema__scroll { display: none; }
}
