/* Yukon Territory Knights ? dark Gen-Z theme; hero copy left, Yukon crew photo right */

:root {
  --void: #0a0e14;
  --charcoal: #121a24;
  --navy: #1a3a5c;
  --gold: #e8c547;
  --gold-mid: #d4af37;
  --cream: #f2f4f8;
  --mist: #9aa8b8;
  --text-soft: rgba(242, 244, 248, 0.88);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", system-ui, -apple-system, sans-serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-soft);
  background: var(--void);
}

a {
  color: var(--gold-mid);
  font-weight: 600;
  text-decoration: none;
}

a:hover {
  color: var(--gold);
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3 {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  color: var(--cream);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 20, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 197, 71, 0.2);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: inherit;
}

.brand:hover,
.brand:focus-visible {
  text-decoration: none;
  color: inherit;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.4));
}

.brand-title {
  margin: 0;
  font-size: clamp(0.78rem, 2vw, 0.92rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.2;
  font-weight: 700;
}

.brand-motto {
  margin: 0.15rem 0 0;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.header-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.1rem;
  align-items: center;
}

.header-nav a {
  color: var(--mist);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
}

.header-nav a:hover {
  color: var(--cream);
  text-decoration: none;
}

.header-cta {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, var(--gold-mid), var(--gold));
  color: #1a1408 !important;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 18px rgba(232, 197, 71, 0.25);
}

.header-cta:hover {
  filter: brightness(1.08);
  text-decoration: none;
  color: #1a1408 !important;
}

/* Hero ? ?Real men?? card left, crew photo right */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 100% 70% at 85% 15%, rgba(232, 197, 71, 0.12), transparent 55%), var(--void);
  padding-block: clamp(0.85rem, 2.5vw, 1.75rem);
  padding-inline: clamp(0.85rem, 3vw, 1.5rem);
}

.hero-grid {
  position: relative;
  z-index: 1;
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, min(68%, 820px));
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: center;
  }
}

.hero-copy {
  position: relative;
  z-index: 1;
  justify-self: start;
  align-self: start;
  width: min(17.5rem, 100%);
  max-width: 100%;
}

.hero-visual {
  justify-self: end;
  align-self: stretch;
  width: 100%;
  max-width: min(820px, 96vw);
  display: flex;
  flex-direction: column;
  min-height: 0;
}

@media (min-width: 901px) {
  .hero-visual {
    min-height: clamp(380px, 44vw, 500px);
  }
}

@media (max-width: 900px) {
  .hero-visual {
    justify-self: center;
    align-self: center;
    max-width: min(520px, 96vw);
    min-height: 0;
  }
}

.hero-crew-frame {
  margin: 0;
  padding: 0;
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(240px, 52vw);
  height: 100%;
  border-radius: 16px;
  border: 2px solid rgba(232, 197, 71, 0.65);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  background: #0d1118;
}

@media (max-width: 900px) {
  .hero-crew-frame {
    flex: none;
    height: auto;
    min-height: 0;
  }
}

.hero-crew {
  display: block;
  flex: 0 1 auto;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center center;
}

@media (max-width: 900px) {
  .hero-crew {
    flex: none;
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: min(400px, 52vh);
    min-height: min(220px, 36vh);
    object-fit: contain;
    object-position: center center;
  }
}

.hero-main {
  width: 100%;
  padding: clamp(0.55rem, 1.6vw, 0.88rem) clamp(0.62rem, 1.8vw, 0.95rem);
  background: rgba(14, 18, 26, 0.82);
  border: 1px solid rgba(232, 197, 71, 0.45);
  border-radius: 14px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.22rem 0.55rem;
  background: rgba(232, 197, 71, 0.1);
  border: 1px solid rgba(232, 197, 71, 0.35);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
}

.hero-impact {
  margin: 0 0 0.4rem;
  line-height: 0.94;
}

.hero-impact-clean {
  display: block;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.45rem, 3.6vw, 2.35rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.5);
}

.hero-impact-spray {
  display: block;
  margin-top: 0.02em;
  font-family: "Rubik Spray Paint", "Permanent Marker", cursive;
  font-size: clamp(1.55rem, 4vw, 2.55rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.35);
  transform: rotate(-1.2deg);
  transform-origin: 0 55%;
}

@media (max-width: 600px) {
  .hero-impact-spray {
    transform: rotate(-0.5deg);
    font-size: clamp(1.5rem, 6.8vw, 2.35rem);
  }
}

.hero-script {
  margin: 0 0 0.45rem;
  font-family: "Caveat", cursive;
  font-size: clamp(0.92rem, 2.3vw, 1.12rem);
  color: rgba(242, 244, 248, 0.92);
  line-height: 1.25;
}

.hero-body {
  margin: 0 0 0.55rem;
  font-size: 0.8rem;
  line-height: 1.52;
  color: var(--text-soft);
}

.hero-emphasis {
  color: var(--gold);
  font-weight: 700;
}

.hero-quote {
  margin: 0 0 0.5rem;
  padding: 0.35rem 0 0 0.55rem;
  border-left: 2px solid var(--gold);
}

.hero-quote p {
  margin: 0;
  font-family: "Caveat", cursive;
  font-size: clamp(0.82rem, 2.1vw, 0.95rem);
  color: var(--gold);
  line-height: 1.28;
}

.hero-quote footer {
  margin: 0.12rem 0 0;
  font-size: 0.66rem;
  color: var(--mist);
  font-style: normal;
}

.hero-loc {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  padding: 0.55rem 0.62rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(232, 197, 71, 0.22);
  border-radius: 10px;
}

.hero-loc svg {
  flex-shrink: 0;
  color: var(--gold);
  margin-top: 2px;
}

.hero-loc p {
  margin: 0;
  font-size: 0.74rem;
  color: var(--cream);
}

.banner-strip.is-placeholder {
  display: none;
}

/* Pillars */
.pillars {
  position: relative;
  margin-top: -2.5rem;
  padding: 3.5rem 1.25rem 3rem;
  background: linear-gradient(185deg, var(--charcoal) 0%, var(--navy) 55%, #0b1524 100%);
  border-top: 1px solid rgba(232, 197, 71, 0.2);
  clip-path: polygon(0 2.5rem, 100% 0, 100% 100%, 0 100%);
}

@media (max-width: 720px) {
  .pillars {
    margin-top: 0;
    clip-path: none;
    padding-top: 2.5rem;
  }
}

.section-label {
  text-align: center;
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.section-title {
  text-align: center;
  margin: 0 0 1.75rem;
  font-size: clamp(1.2rem, 2.8vw, 1.65rem);
  color: var(--cream);
}

.pillars-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.pillar {
  text-align: center;
  padding: 1.35rem 1rem 1.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  transition: transform 0.2s, border-color 0.2s;
}

.pillar:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 197, 71, 0.32);
}

.pillar-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 0.85rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: rgba(232, 197, 71, 0.08);
}

.pillar h3 {
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.pillar p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-soft);
}

/* Stats */
.stats {
  background: linear-gradient(90deg, #9a7612 0%, #e8c547 48%, #c9a227 100%);
  color: var(--void);
  padding: 2.1rem 1.25rem;
}

.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.stats h2 {
  margin: 0 0 1.5rem;
  color: var(--void);
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
}

.stat {
  padding: 0.85rem;
}

.stat strong {
  display: block;
  font-size: clamp(1.25rem, 2.8vw, 1.6rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 0.3rem;
}

.stat span {
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
  opacity: 0.92;
}

/* Connect */
.connect {
  background: var(--void);
  padding: 2.5rem 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.connect-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 1.75rem;
  grid-template-columns: 1fr;
  align-items: center;
}

@media (min-width: 900px) {
  .connect-inner {
    grid-template-columns: 220px 1fr auto;
  }
}

.qr-box {
  text-align: center;
}

.qr-box img {
  margin: 0 auto 0.65rem;
  border-radius: 12px;
  border: 3px solid rgba(232, 197, 71, 0.45);
}

.qr-box p {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.45;
  color: var(--mist);
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

.quote-teresa {
  margin: 0;
  font-size: 1.08rem;
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  line-height: 1.5;
}

.quote-teresa cite {
  display: block;
  margin-top: 0.65rem;
  font-style: normal;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--cream);
}

.social-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
}

.social-row span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--mist);
}

.social-icons {
  display: flex;
  gap: 0.65rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(232, 197, 71, 0.22);
  color: var(--gold);
  transition: background 0.2s, transform 0.2s;
}

.social-icons a:hover {
  background: rgba(232, 197, 71, 0.14);
  transform: translateY(-2px);
  text-decoration: none;
}

.social-icons svg {
  width: 20px;
  height: 20px;
}

.connect-site-link {
  font-size: 0.9rem;
  color: var(--gold) !important;
}

.connect-site-link:hover {
  color: var(--cream) !important;
}

/* Content */
.content {
  max-width: 720px;
  margin: 0 auto;
  padding: 2.75rem 1.25rem 3rem;
  color: var(--text-soft);
}

.content h2 {
  margin: 2rem 0 0.65rem;
  font-size: 1.25rem;
  color: var(--cream);
}

.content h2:first-child {
  margin-top: 0;
}

.content p,
.content li {
  color: var(--text-soft);
}

.content a {
  color: var(--gold);
}

.content ul {
  padding-left: 1.2rem;
}

.sources {
  font-size: 0.86rem;
  color: var(--mist);
  margin-top: 1.75rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer-tagline {
  background: var(--charcoal);
  color: var(--gold);
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  border-top: 1px solid rgba(232, 197, 71, 0.2);
}

.footer-cta {
  background: var(--navy);
  padding: 1.35rem 1.25rem;
}

.footer-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-cta a {
  color: var(--gold);
  font-size: 1rem;
}

.join {
  margin: 0;
  font-size: 1.05rem;
  color: var(--cream);
}

.join strong {
  color: var(--gold);
}

.site-footer {
  text-align: center;
  margin: 0;
  padding: 1.1rem;
  font-size: 0.75rem;
  color: var(--mist);
  background: #070a0f;
}

