/* ============================================================
   The Warrior's Journey Classic — bespoke landing page
   Bebas Neue (display) + Lato (body). Gold #b6a973.
   Scoped under .wjc so it never collides with theme styles.
   ============================================================ */
.wjc {
  --gold: #b6a973;
  --gold-bright: #cdbf86;
  --gold-deep: #9c8f5c;
  --ink: #0c0f14;
  --ink-2: #11161d;
  --navy: #0e1b2c;
  --bronze: #2a2014;
  --maroon: #7c3f37;
  --maroon-deep: #693631;
  --cream: #f4efe6;
  --muted: #b7b2a8;
  --line: rgba(182, 169, 115, 0.4);

  --display: "Bebas Neue", "Oswald", Impact, sans-serif;
  --body: "Lato", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1120px;
  --gutter: clamp(1.25rem, 5vw, 3.5rem);

  margin: 0;
  font-family: var(--body);
  font-weight: 300;
  color: var(--cream);
  background: var(--ink);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
.wjc *,
.wjc *::before,
.wjc *::after { box-sizing: border-box; }
.wjc img { max-width: 100%; display: block; }

.wjc h1, .wjc h2, .wjc h3, .wjc .wjc-display {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin: 0;
  text-transform: uppercase;
}
.wjc h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
.wjc h2 { font-size: clamp(2.2rem, 5.5vw, 4rem); }
.wjc h3 { font-size: clamp(1.5rem, 3vw, 2.1rem); }

.wjc p { margin-block: 0 1.1em; }

.wjc-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.wjc-eyebrow {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 1.05rem;
  color: var(--gold);
  margin: 0 0 1rem;
}

.wjc-italic {
  font-style: italic;
  color: var(--gold-bright);
}

/* ---- Section system: full-bleed photo + overlay ---- */
.wjc-sec {
  position: relative;
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
  padding-block: clamp(4rem, 9vw, 8rem);
  overflow: hidden;
}
.wjc-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8,10,14,0.72) 0%, rgba(8,10,14,0.78) 100%);
}
/* Cinematic: vignette + dramatic dark gradient, focal area kept visible */
.wjc-sec--hero::before {
  background:
    radial-gradient(125% 92% at 50% 45%, rgba(0,0,0,0.12) 22%, rgba(3,5,9,0.7) 100%),
    linear-gradient(180deg, rgba(2,4,8,0.95) 0%, rgba(4,7,11,0.55) 27%, rgba(4,7,11,0.48) 52%, rgba(3,5,9,0.8) 80%, rgba(1,2,5,0.98) 100%);
}
.wjc-sec--mission::before {
  background:
    radial-gradient(135% 115% at 68% 38%, rgba(8,10,14,0.18) 0%, rgba(3,4,7,0.84) 68%),
    linear-gradient(180deg, rgba(2,3,6,0.74) 0%, rgba(3,4,8,0.6) 45%, rgba(2,3,6,0.9) 100%);
}
.wjc-sec--experience::before {
  background:
    radial-gradient(120% 100% at 50% 40%, rgba(0,0,0,0.22) 18%, rgba(2,5,10,0.72) 100%),
    linear-gradient(180deg, rgba(2,5,10,0.93) 0%, rgba(3,6,12,0.74) 46%, rgba(1,3,8,0.95) 100%);
}
.wjc-sec--sponsor::before {
  background:
    radial-gradient(120% 100% at 50% 40%, rgba(0,0,0,0) 30%, rgba(3,5,9,0.62) 100%),
    linear-gradient(180deg, rgba(3,5,9,0.92) 0%, rgba(4,6,10,0.55) 48%, rgba(2,4,8,0.93) 100%);
}
.wjc-sec--additional::before {
  background:
    radial-gradient(120% 100% at 50% 42%, rgba(0,0,0,0) 30%, rgba(3,5,10,0.6) 100%),
    linear-gradient(180deg, rgba(4,7,12,0.9) 0%, rgba(4,7,12,0.5) 48%, rgba(2,4,9,0.92) 100%);
}
.wjc-sec--registration::before {
  background:
    radial-gradient(125% 100% at 50% 42%, rgba(0,0,0,0.22) 16%, rgba(2,4,9,0.72) 100%),
    linear-gradient(180deg, rgba(2,4,9,0.94) 0%, rgba(3,5,10,0.66) 46%, rgba(1,3,7,0.95) 100%);
}
.wjc-sec--form { background-color: var(--ink); background-size: cover; background-position: center; }
.wjc-sec--form::before {
  background:
    radial-gradient(120% 100% at 50% 28%, rgba(3,5,9,0.8) 0%, rgba(1,2,6,0.95) 70%),
    linear-gradient(180deg, rgba(2,3,7,0.9) 0%, rgba(1,2,5,0.97) 100%);
}

/* ---- Buttons ---- */
.wjc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2.2rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.wjc-btn:hover { transform: translateY(-2px); }
.wjc-btn--maroon { background: var(--maroon); color: var(--cream); }
.wjc-btn--maroon:hover { background: var(--maroon-deep); }
.wjc-btn--ghost { background: rgba(255,255,255,0.06); color: var(--cream); border-color: rgba(244,239,230,0.5); }
.wjc-btn--ghost:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); }
.wjc-btn--gold { background: var(--gold); color: var(--ink); }
.wjc-btn--gold:hover { background: var(--gold-bright); }

/* ---- Header ---- */
.wjc-header {
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 20;
  padding: 1.4rem 0;
}
.wjc-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.wjc-header__logo img { height: 84px; width: auto; }
@media (max-width: 600px){ .wjc-header__logo img { height: 60px; } }
.wjc-header__logo .wjc-wordmark { font-family: var(--display); color: var(--gold); font-size: 1.5rem; letter-spacing: 0.08em; }
.wjc-header__cta { font-size: 1rem; padding: 0.6rem 1.4rem; }
@media (max-width: 600px){ .wjc-header__cta { display: none; } }

/* ---- Hero ---- */
.wjc-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  text-align: center;
  padding-block: 7rem 3.5rem;
}
/* Center every hero child on the cross axis (bulletproof, no reliance on auto-margins) */
.wjc-hero .wjc-container { display: flex; flex-direction: column; align-items: center; }
.wjc-sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.wjc-hero__shield { width: 60px; height: auto; margin: 0 auto 1rem; }
.wjc-hero__wordmark { display: block; width: min(580px, 86vw); height: auto; margin: 0.6rem auto 0; overflow: visible; filter: drop-shadow(0 4px 26px rgba(0,0,0,0.5)); }
.wjc-hero__wordmark .wjc-wm-top { font-family: "Bebas Neue", Impact, sans-serif; fill: url(#wjcGold); font-size: 74px; }
.wjc-hero__wordmark .wjc-wm-main { font-family: "Bebas Neue", Impact, sans-serif; fill: url(#wjcGold); font-size: 296px; }
.wjc-hero__daterow { display: flex; align-items: center; justify-content: center; gap: 1rem; margin: 1.2rem auto 0; }
.wjc-hero__daterow span { display: block; width: 64px; height: 1px; flex: 0 0 auto; }
.wjc-hero__daterow span:first-child { background: linear-gradient(90deg, transparent, var(--gold)); }
.wjc-hero__daterow span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }
.wjc-hero__daterow .wjc-hero__date { margin: 0; }
.wjc-hero__stars { color: var(--gold); font-size: 0.72rem; letter-spacing: 0.5em; padding-left: 0.5em; margin: 0 0 0.55rem; line-height: 1; }
.wjc-hero__venueline { font-family: var(--display); color: var(--gold-deep); font-size: clamp(0.95rem, 1.8vw, 1.2rem); letter-spacing: 0.2em; text-transform: uppercase; margin: 0.7rem 0 0; }
.wjc-hero__rule {
  display: block;
  width: clamp(160px, 30%, 280px);
  height: 1px;
  margin: 1.5rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold) 22%, var(--gold) 78%, transparent);
  opacity: 0.85;
}
.wjc-hero__date {
  font-family: var(--display);
  color: var(--gold);
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  letter-spacing: 0.18em;
  line-height: 1;
  margin: 0;
  padding-left: 0.18em;
  white-space: nowrap;
  flex: 0 0 auto;
}
.wjc-hero__subtitle {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  display: block;
  max-width: 30em;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.5rem;
  text-align: center;
  letter-spacing: 0.12em;
}
.wjc-hero__intro {
  max-width: 60ch;
  margin: 1.1rem auto 0;
  text-align: center;
  font-size: 1.125rem;
  font-style: normal;
  color: var(--cream);
}
.wjc-crest {
  margin: 2rem auto 2.2rem;
  max-width: 320px;
}
.wjc-crest img { margin-inline: auto; }
.wjc-crest__name { font-family: var(--display); color: var(--gold); font-size: 1.6rem; letter-spacing: 0.05em; }
.wjc-crest__loc { font-family: var(--body); font-weight: 700; letter-spacing: 0.28em; font-size: 0.72rem; color: var(--gold-deep); text-transform: uppercase; }
.wjc-hero__body { max-width: 64ch; margin-inline: auto; }
.wjc-hero__body > p { font-size: 1.125rem; }
.wjc-hero__emphasis { margin-top: 1.2rem; }
.wjc-hero__emphasis p { font-size: 1.2rem; color: #fff; margin: 0.15rem 0; }
.wjc-hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 1.8rem; }

/* ---- Generic prose blocks ---- */
.wjc-lead { max-width: 66ch; font-size: 1.125rem; margin-inline: auto; }
.wjc-narrow { max-width: 74ch; margin-inline: auto; text-align: center; }
.wjc-stanza { margin: 1.2rem 0; }
.wjc-stanza p { margin: 0; }
.wjc-mission__close { margin-top: 2rem; }
.wjc-mission__tag { margin-top: 1.5rem; }
.wjc-mission__tag p { font-family: var(--display); text-transform: uppercase; letter-spacing: 0.06em; line-height: 1.05; color: var(--gold); font-size: clamp(1.6rem, 3vw, 2.1rem); margin: 0; }

/* ---- Experience bullets ---- */
.wjc-bullets { list-style: none; margin: 1.8rem auto; padding: 0; max-width: 52ch; text-align: left; }
.wjc-bullets li { font-size: 1.125rem; }
.wjc-bullets li {
  position: relative;
  padding: 0.5rem 0 0.5rem 2rem;
  border-bottom: 1px solid rgba(182,169,115,0.18);
}
.wjc-bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 1.15rem;
  width: 9px; height: 9px;
  background: var(--gold);
  transform: rotate(45deg);
}

/* ---- Sponsorship: presenting ---- */
.wjc-sponsor__head { text-align: center; }
.wjc-sponsor__head h2 { color: #fff; }
.wjc-sponsor__rule { width: 70px; height: 3px; background: var(--gold); margin: 1rem auto 1.5rem; }
.wjc-sponsor__intro { max-width: 56ch; margin-inline: auto; color: var(--cream); font-size: 1.125rem; }
.wjc-present {
  margin: 3.5rem auto 0;
  max-width: 960px;
  text-align: center;
  border: 1px solid rgba(182,169,115,0.5);
  padding: clamp(2.2rem, 4.5vw, 3.6rem);
  background: rgba(8,10,14,0.52);
}
.wjc-present__name { color: var(--gold); letter-spacing: 0.06em; }
.wjc-present__excl { font-family: var(--body); font-weight: 700; letter-spacing: 0.42em; font-size: 0.72rem; color: var(--gold-deep); margin: 0.55rem 0 0; text-transform: uppercase; }
.wjc-present__price { font-family: var(--display); color: var(--gold); font-size: clamp(2.8rem, 6vw, 4rem); margin-top: 0.2rem; }
.wjc-present__blurb { font-style: normal; color: var(--cream); max-width: 52ch; margin: 0.9rem auto 0; font-size: 1.125rem; }
.wjc-present__perks {
  list-style: none;
  margin: 2.4rem auto 0;
  padding: 1.9rem 0 0;
  max-width: 820px;
  border-top: 1px solid rgba(182,169,115,0.22);
  columns: 2;
  column-gap: 3.2rem;
  text-align: left;
}
.wjc-present__perks li {
  break-inside: avoid;
  position: relative;
  padding: 0.42rem 0 0.42rem 1.45rem;
  font-size: 0.95rem;
  color: var(--cream);
}
.wjc-present__perks li::before { content: "›"; position: absolute; left: 0; color: var(--gold); }
@media (max-width: 640px){ .wjc-present__perks { columns: 1; } }

/* ---- Additional sponsorships: premium cards ---- */
.wjc-additional__head { text-align: center; margin-bottom: 0.5rem; }
.wjc-additional__head h2 { color: var(--gold); }
.wjc-tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; margin-top: 3rem; align-items: start; }
.wjc-tier {
  background: rgba(8,10,14,0.5);
  border: 1px solid rgba(182,169,115,0.24);
  transition: border-color .25s ease, background .25s ease;
}
.wjc-tier:hover { border-color: rgba(182,169,115,0.55); }
.wjc-tier[open] { border-color: var(--gold); background: rgba(10,12,17,0.64); }
.wjc-tier__icon, .wjc-tier__reclabel { display: none; }
.wjc-tier__summary { list-style: none; cursor: pointer; display: block; text-align: center; padding: 2.4rem 1.9rem; }
.wjc-tier__summary::-webkit-details-marker { display: none; }
.wjc-tier__summary::marker { content: ""; }
.wjc-tier__name { color: var(--gold); letter-spacing: 0.05em; }
.wjc-tier__excl { font-family: var(--body); font-weight: 700; letter-spacing: 0.34em; font-size: 0.62rem; text-transform: uppercase; color: var(--gold-deep); margin: 0.35rem 0 0; }
.wjc-tier__price { font-family: var(--display); color: #fff; font-size: clamp(2rem, 4vw, 2.7rem); margin-top: 0.15rem; }
.wjc-tier__blurb { font-style: normal; color: var(--muted); font-size: 0.95rem; max-width: 34ch; margin: 0.7rem auto 1.3rem; }
.wjc-tier__toggle {
  display: inline-block; font-family: var(--body); font-weight: 700;
  font-size: 0.64rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(182,169,115,0.5);
  padding: 0.55rem 1.15rem; transition: background .2s ease, color .2s ease;
}
.wjc-tier__summary:hover .wjc-tier__toggle { background: var(--gold); color: var(--ink); }
.wjc-tier:not([open]) .wjc-tier__toggle::after { content: "  +"; }
.wjc-tier[open] .wjc-tier__toggle::after { content: "  \2013"; }
.wjc-tier__perks { list-style: none; margin: 0; padding: 1.4rem 1.9rem 2.2rem; border-top: 1px solid rgba(182,169,115,0.18); text-align: left; }
.wjc-tier__perks li {
  position: relative; padding: 0.42rem 0 0.42rem 1.3rem;
  font-size: 0.95rem; color: var(--cream);
}
.wjc-tier__perks li::before { content: "›"; position: absolute; left: 0; color: var(--gold); }

/* ---- Registration ---- */
.wjc-reg__head { text-align: center; }
.wjc-reg__head h2 { color: #fff; }
.wjc-reg__intro { max-width: 52ch; margin: 0.8rem auto 0; text-align: center; font-size: 1.125rem; }
.wjc-reg__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2.5rem; margin-top: 3rem; text-align: center; align-items: stretch; }
.wjc-reg__card { display: flex; flex-direction: column; align-items: center; }
.wjc-reg__card .wjc-btn { margin-top: auto; }
.wjc-reg__name { color: var(--gold); }
.wjc-reg__price { font-family: var(--display); color: var(--gold); font-size: clamp(2.4rem, 5vw, 3.2rem); margin-bottom: 0.6rem; }
.wjc-reg__blurb { max-width: 38ch; margin: 0 auto 1.6rem; text-align: center; font-size: 1.125rem; }

/* ---- Inquiry form ---- */
.wjc-form__inner { display: block; max-width: 700px; margin-inline: auto; }
.wjc-form__copy { text-align: center; margin-bottom: 2.2rem; }
.wjc-form__copy h2 { color: #fff; }
.wjc-form__copy p { color: var(--muted); max-width: 50ch; margin: 0.8rem auto 0; font-size: 1.125rem; }
.wjc-form { background: rgba(8,10,14,0.55); border: 1px solid rgba(182,169,115,0.3); padding: clamp(1.6rem, 4vw, 2.8rem); }
.wjc-form form { display: grid; gap: 1.05rem; }
.wjc-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.05rem; }
@media (max-width: 520px){ .wjc-form__row { grid-template-columns: 1fr; } }
.wjc-form label {
  display: grid; gap: 0.4rem;
  font-family: var(--body); font-weight: 700; font-size: 0.66rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep);
}
.wjc-form input, .wjc-form select, .wjc-form textarea {
  font: inherit; font-weight: 400; text-transform: none; letter-spacing: normal;
  padding: 0.9rem 1rem; border: 1px solid rgba(182,169,115,0.28);
  background: rgba(255,255,255,0.03); color: var(--cream); border-radius: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.wjc-form input:focus, .wjc-form select:focus, .wjc-form textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 2px rgba(182,169,115,0.18);
  background: rgba(255,255,255,0.06);
}
.wjc-form select option { color: #000; }
.wjc-form button { justify-self: center; border: none; margin-top: 0.9rem; padding-inline: 3rem; }
.wjc-form__success { border: 1px solid var(--gold); padding: 2.5rem; background: rgba(182,169,115,0.08); text-align: center; }
.wjc-form__success h3 { color: var(--gold); }
.wjc-hp { position: absolute; left: -9999px; }

/* ---- Footer ---- */
.wjc-footer { background: #07090c; padding: 3.5rem 0 2rem; }
.wjc-footer__inner { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: space-between; align-items: center; border-bottom: 1px solid rgba(182,169,115,0.2); padding-bottom: 2rem; }
.wjc-footer__logo img { height: 60px; }
.wjc-footer__nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.wjc-footer__nav a { color: var(--cream); text-decoration: none; font-family: var(--display); letter-spacing: 0.08em; font-size: 1.05rem; }
.wjc-footer__nav a:hover { color: var(--gold); }
.wjc-footer__legal { padding-top: 1.4rem; font-size: 0.82rem; color: var(--muted); display: flex; flex-wrap: wrap; gap: 0.4rem 1.5rem; justify-content: space-between; }
.wjc-footer__legal a { color: var(--gold-deep); }

/* ---- Reveal ---- */
.wjc .reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.wjc .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce){ .wjc .reveal { opacity: 1; transform: none; transition: none; } }
