/**
 * World Record Camps — Homepage presentation layer
 * Presentation only; does not change routes or app behavior.
 */

.page-home {
  --wrc-navy: #112250;
  --wrc-green: #10b981;
  --wrc-green-dark: #059669;
  --wrc-gold: #e4b55d;
  --wrc-gold-deep: #d4a017;
  --wrc-blue: #3b82f6;
  --wrc-red: #ef4444;
  --wrc-orange: #f59e0b;
  --wrc-white: #ffffff;
  --wrc-surface: #f7f8fb;
  --wrc-border: rgba(17, 34, 80, 0.1);
  --wrc-muted: #5b6475;
  --wrc-shadow: 0 12px 40px rgba(17, 34, 80, 0.08);
  --wrc-shadow-hover: 0 18px 48px rgba(17, 34, 80, 0.14);
  --wrc-radius: 16px;
  --wrc-radius-sm: 12px;
  --wrc-max: 1280px;
  --wrc-header-offset: 110px;

  background: var(--wrc-white);
  color: var(--wrc-navy);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

.page-home [data-theme="dark"],
[data-theme="dark"] .page-home,
html[data-theme="dark"] .page-home,
body.page-home[data-theme="dark"] {
  --wrc-white: #0f1420;
  --wrc-surface: #171d2b;
  --wrc-border: rgba(255, 255, 255, 0.12);
  --wrc-muted: #b7bfcc;
  --wrc-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  background: #0b0f18;
  color: #f3f5f9;
}

.page-home *,
.page-home *::before,
.page-home *::after {
  box-sizing: border-box;
}

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

.page-home a:focus-visible,
.page-home button:focus-visible {
  outline: 3px solid var(--wrc-gold);
  outline-offset: 3px;
}

.page-home .background-image {
  display: none !important;
}

/* Homepage header refinements (keeps global menu JS/structure) */
.page-home .global-site-header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--wrc-border);
  box-shadow: 0 8px 30px rgba(17, 34, 80, 0.06);
  padding: 10px 0;
}

.page-home .global-site-header .site-logo {
  width: 150px;
  height: auto;
  max-height: 88px;
  filter: drop-shadow(0 2px 6px rgba(17, 34, 80, 0.12));
}

.page-home .global-site-header .header-nav-btn {
  background: #f3f5f8;
  border: 1px solid transparent;
  color: var(--wrc-navy);
  box-shadow: none;
  backdrop-filter: none;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.page-home .global-site-header .header-nav-btn:hover,
.page-home .global-site-header .header-nav-btn.is-active {
  background: rgba(228, 181, 93, 0.18);
  border-color: var(--wrc-gold);
  color: var(--wrc-navy);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(228, 181, 93, 0.2);
}

body.page-home[data-theme="dark"] .global-site-header {
  background: rgba(15, 20, 32, 0.92);
}

body.page-home[data-theme="dark"] .global-site-header .header-nav-btn {
  background: rgba(255, 255, 255, 0.06);
  color: #f3f5f9;
}

/* Layout helpers */
.home-shell {
  width: min(100% - 2.5rem, var(--wrc-max));
  margin-inline: auto;
}

.home-section {
  padding: clamp(3rem, 7vw, 6.5rem) 0;
}

.home-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--wrc-muted);
  margin: 0 0 0.75rem;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
}

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

.home-btn--primary {
  background: var(--wrc-green);
  color: #fff;
  border-color: var(--wrc-green);
  box-shadow: 0 10px 24px rgba(16, 185, 129, 0.28);
}

.home-btn--primary:hover {
  background: var(--wrc-green-dark);
  border-color: var(--wrc-green-dark);
  box-shadow: 0 14px 28px rgba(16, 185, 129, 0.35);
}

.home-btn--ghost {
  background: #fff;
  color: var(--wrc-navy);
  border-color: rgba(17, 34, 80, 0.22);
}

.home-btn--ghost:hover {
  border-color: var(--wrc-navy);
  box-shadow: 0 10px 24px rgba(17, 34, 80, 0.1);
}

.home-btn--outline {
  background: transparent;
  color: var(--wrc-navy);
  border-color: rgba(17, 34, 80, 0.2);
}

body.page-home[data-theme="dark"] .home-btn--ghost,
body.page-home[data-theme="dark"] .home-btn--outline {
  background: transparent;
  color: #f3f5f9;
  border-color: rgba(255, 255, 255, 0.28);
}

.home-icon {
  width: 1.35rem;
  height: 1.35rem;
  flex-shrink: 0;
}

.home-play-icon {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: inline-grid;
  place-items: center;
}

.home-play-icon svg {
  width: 0.7rem;
  height: 0.7rem;
  margin-left: 1px;
}

/* ========== HERO ========== */
.home-hero {
  position: relative;
  padding: calc(var(--wrc-header-offset) + 1.5rem) 0 4rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(228, 181, 93, 0.14), transparent 34%),
    radial-gradient(circle at 88% 12%, rgba(16, 185, 129, 0.1), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

body.page-home[data-theme="dark"] .home-hero {
  background:
    radial-gradient(circle at 12% 18%, rgba(228, 181, 93, 0.12), transparent 34%),
    linear-gradient(180deg, #0b0f18 0%, #121826 100%);
}

.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.home-hero__copy {
  position: relative;
  z-index: 2;
  max-width: 34rem;
}

.home-hero__title {
  font-family: 'Bebas Neue', Impact, Haettenschweiler, sans-serif;
  font-weight: 400;
  font-size: clamp(3.4rem, 8vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--wrc-navy);
  margin: 0 0 1.25rem;
}

.home-hero__title .accent-green {
  color: var(--wrc-green);
}

.home-hero__title .accent-gold {
  color: var(--wrc-gold-deep);
}

body.page-home[data-theme="dark"] .home-hero__title {
  color: #f5f7fb;
}

.home-hero__lead {
  margin: 0 0 1.75rem;
  color: var(--wrc-muted);
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 500;
  max-width: 34ch;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.home-hero__media {
  position: relative;
  min-height: clamp(320px, 48vw, 560px);
  border-radius: 0 0 0 48px;
  overflow: hidden;
}

.home-hero__media::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, #fff 0%, rgba(255, 255, 255, 0.55) 18%, transparent 42%),
    linear-gradient(180deg, transparent 55%, rgba(17, 34, 80, 0.35) 100%);
  pointer-events: none;
}

body.page-home[data-theme="dark"] .home-hero__media::before {
  background: linear-gradient(90deg, #0b0f18 0%, rgba(11, 15, 24, 0.55) 18%, transparent 42%),
    linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.45) 100%);
}

.home-hero__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: 62% center;
  transform: scale(1.02);
}

.home-hero__quote {
  position: absolute;
  left: 8%;
  bottom: 12%;
  z-index: 2;
  max-width: 14rem;
  color: #fff;
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.35;
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.home-hero__quote strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.35rem;
  color: var(--wrc-gold);
}

.home-hero__rail {
  position: absolute;
  top: 1.25rem;
  right: 1rem;
  z-index: 2;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.home-hero__rail::before {
  content: '';
  width: 3px;
  height: 3.5rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--wrc-gold), var(--wrc-green));
}

/* ========== CREDIBILITY ========== */
.home-credibility {
  margin-top: -2.5rem;
  position: relative;
  z-index: 3;
  padding-bottom: 1rem;
}

.home-credibility__card {
  background: var(--wrc-white);
  border: 1px solid var(--wrc-border);
  border-radius: var(--wrc-radius);
  box-shadow: var(--wrc-shadow);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
}

.home-credibility__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 1.4rem 1.25rem;
  border-right: 1px solid var(--wrc-border);
}

.home-credibility__item:last-child {
  border-right: none;
}

.home-credibility__item p {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.35;
  color: var(--wrc-navy);
}

body.page-home[data-theme="dark"] .home-credibility__item p {
  color: #f3f5f9;
}

.home-credibility__item .home-icon {
  width: 1.7rem;
  height: 1.7rem;
}

.home-credibility__item--gold .home-icon { color: var(--wrc-gold-deep); }
.home-credibility__item--green .home-icon { color: var(--wrc-green); }
.home-credibility__item--blue .home-icon { color: var(--wrc-blue); }
.home-credibility__item--red .home-icon { color: var(--wrc-red); }

/* ========== CAMPS ========== */
.home-camps__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.home-camps__title {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  letter-spacing: 0.04em;
  margin: 0;
  color: var(--wrc-navy);
}

body.page-home[data-theme="dark"] .home-camps__title {
  color: #f5f7fb;
}

.home-camps__sub {
  margin: 0.35rem 0 0;
  color: var(--wrc-muted);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 36rem;
}

.home-camps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.home-camp-card {
  position: relative;
  display: block;
  min-height: 280px;
  border-radius: var(--wrc-radius);
  overflow: hidden;
  border: 1px solid var(--wrc-border);
  box-shadow: var(--wrc-shadow);
  text-decoration: none;
  color: #fff;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-camp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--wrc-shadow-hover);
}

.home-camp-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.home-camp-card:hover img {
  transform: scale(1.03);
}

.home-camp-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 34, 80, 0.05) 20%, rgba(17, 34, 80, 0.82) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  gap: 0.45rem;
}

.home-camp-card__overlay h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
}

.home-camp-card__overlay h3 span {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.9;
}

.home-camp-card__date {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.95;
}

.home-camp-card__cta {
  align-self: flex-start;
  margin-top: 0.35rem;
  background: var(--wrc-green);
  color: #fff;
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ========== SPONSORS ========== */
.home-sponsors {
  background: var(--wrc-surface);
}

.home-sponsors__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.home-sponsors__title {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  margin: 0;
  position: relative;
  display: inline-block;
}

.home-sponsors__title::after {
  content: '';
  display: block;
  width: 4.5rem;
  height: 4px;
  margin-top: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--wrc-green), var(--wrc-gold));
}

.home-sponsors__tag {
  margin: 0;
  color: var(--wrc-muted);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-home .sponsors-logos,
.page-home [data-wrc-sponsor-logos] {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.page-home .sponsor-logo,
.page-home [data-wrc-sponsor-logos] a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  padding: 1.1rem;
  background: #fff !important;
  border: 1px solid var(--wrc-border) !important;
  border-radius: var(--wrc-radius-sm) !important;
  box-shadow: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-home .sponsor-logo:hover,
.page-home [data-wrc-sponsor-logos] a:hover {
  transform: translateY(-2px);
  box-shadow: var(--wrc-shadow);
}

.page-home .sponsor-logo img,
.page-home [data-wrc-sponsor-logos] img {
  width: auto !important;
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
  filter: none !important;
}

body.page-home[data-theme="dark"] .sponsor-logo,
body.page-home[data-theme="dark"] [data-wrc-sponsor-logos] a {
  background: #161c2a !important;
}

/* ========== MISSION ========== */
.home-mission__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: center;
}

.home-mission__media {
  border-radius: var(--wrc-radius);
  overflow: hidden;
  min-height: 420px;
  box-shadow: var(--wrc-shadow);
  border: 1px solid var(--wrc-border);
}

.home-mission__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center top;
}

.home-mission__copy h2 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  margin: 0 0 1rem;
  color: var(--wrc-navy);
}

.home-mission__copy h2 .accent-green {
  color: var(--wrc-green);
  display: block;
}

body.page-home[data-theme="dark"] .home-mission__copy h2 {
  color: #f5f7fb;
}

.home-mission__copy p {
  margin: 0 0 1.35rem;
  color: var(--wrc-muted);
  font-size: 1.02rem;
  font-weight: 500;
}

.home-mission__benefits {
  display: grid;
  gap: 0.9rem;
}

.home-mission__benefit {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  background: var(--wrc-surface);
  border: 1px solid var(--wrc-border);
}

.home-mission__benefit span {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-mission__benefit--gold .home-icon { color: var(--wrc-gold-deep); }
.home-mission__benefit--amber .home-icon { color: var(--wrc-orange); }
.home-mission__benefit--green .home-icon { color: var(--wrc-green); }
.home-mission__benefit--teal .home-icon { color: #14b8a6; }

.home-who {
  margin-top: 2rem;
  padding: 1.25rem 1.35rem;
  border-radius: var(--wrc-radius-sm);
  background: var(--wrc-surface);
  border: 1px solid var(--wrc-border);
}

.home-who h3 {
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-who ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--wrc-muted);
  font-weight: 500;
}

.home-who li + li {
  margin-top: 0.35rem;
}

/* ========== QUICK ACCESS ========== */
.home-quick {
  background:
    linear-gradient(180deg, rgba(16, 185, 129, 0.05), transparent 30%),
    var(--wrc-white);
}

.home-quick__panel {
  background: #fff;
  border: 1px solid var(--wrc-border);
  border-radius: calc(var(--wrc-radius) + 4px);
  box-shadow: var(--wrc-shadow);
  padding: clamp(1.5rem, 3vw, 2.25rem);
}

body.page-home[data-theme="dark"] .home-quick__panel {
  background: #121826;
}

.home-quick__title {
  text-align: center;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  letter-spacing: 0.06em;
  margin: 0 0 1.35rem;
}

.home-quick__primary {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.home-quick__tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 118px;
  padding: 1rem 0.75rem;
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-quick__tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(17, 34, 80, 0.18);
}

.home-quick__tile .home-icon {
  width: 1.6rem;
  height: 1.6rem;
}

.home-quick__tile--green { background: linear-gradient(145deg, #10b981, #059669); }
.home-quick__tile--blue { background: linear-gradient(145deg, #3b82f6, #1d4ed8); }
.home-quick__tile--gold { background: linear-gradient(145deg, #e4b55d, #d4a017); color: #112250; }
.home-quick__tile--red { background: linear-gradient(145deg, #ef4444, #dc2626); }
.home-quick__tile--navy { background: linear-gradient(145deg, #112250, #1a3a6b); }

.home-quick__secondary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin-top: 1.15rem;
}

.home-quick__chip {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--wrc-navy);
  background: var(--wrc-surface);
  border: 1px solid var(--wrc-border);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.home-quick__chip:hover {
  transform: translateY(-1px);
  border-color: var(--wrc-gold);
}

body.page-home[data-theme="dark"] .home-quick__chip {
  color: #f3f5f9;
}

.home-tagline {
  margin: 1.75rem 0 0;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--wrc-muted);
}

/* ========== MOMENTS (existing carousel + video) ========== */
.home-moments {
  background: var(--wrc-surface);
}

.home-moments__title {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(2.2rem, 4vw, 3rem);
  letter-spacing: 0.04em;
  margin: 0 0 0.35rem;
}

.home-moments__sub {
  margin: 0 0 1.5rem;
  color: var(--wrc-muted);
  font-weight: 500;
}

.page-home .carousel-container {
  position: relative;
  width: 100%;
  margin: 0 0 2rem;
  overflow: hidden;
  border-radius: var(--wrc-radius);
  box-shadow: var(--wrc-shadow);
  background: #000;
}

.page-home .carousel {
  display: flex;
  width: 1000%;
  transition: transform 0.5s ease-in-out;
}

.page-home .carousel-slide {
  width: 10%;
  min-width: 10%;
  flex-shrink: 0;
  min-height: min(62vh, 560px);
  position: relative;
}

.page-home .carousel-slide img {
  width: 100%;
  height: min(62vh, 560px);
  object-fit: cover;
  object-position: center;
}

.page-home .carousel-slide:nth-child(4) img,
.page-home .carousel-slide:nth-child(5) img {
  object-position: center top;
}

.page-home .carousel-slide:nth-child(7) img {
  object-position: center bottom;
}

.page-home .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(17, 34, 80, 0.55);
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  font-size: 1.1rem;
  border-radius: 50%;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 10;
}

.page-home .carousel-btn:hover {
  background: rgba(17, 34, 80, 0.85);
  transform: translateY(-50%) scale(1.05);
}

.page-home .carousel-btn.prev { left: 16px; }
.page-home .carousel-btn.next { right: 16px; }

.page-home .carousel-indicators {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 10;
}

.page-home .indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  cursor: pointer;
}

.page-home .indicator.active {
  background: var(--wrc-gold);
}

.page-home .sizzle-reel-section {
  margin: 0;
  padding: 0;
}

.page-home .sizzle-reel-section h2 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  letter-spacing: 0.04em;
  margin: 0 0 1rem;
  text-align: left;
  color: var(--wrc-navy);
}

body.page-home[data-theme="dark"] .page-home .sizzle-reel-section h2,
body.page-home[data-theme="dark"] .sizzle-reel-section h2 {
  color: #f5f7fb;
}

.page-home .sizzle-reel-video-container {
  border-radius: var(--wrc-radius);
  overflow: hidden;
  box-shadow: var(--wrc-shadow);
  background: #000;
}

.page-home .sizzle-reel-video-container video {
  width: 100%;
  display: block;
  max-height: 640px;
  background: #000;
}

/* ========== FOOTER ========== */
.page-home .footer {
  background: #0f172a;
  color: rgba(255, 255, 255, 0.86);
  padding: 2.5rem 1.25rem;
  text-align: center;
  margin-top: 0;
}

.page-home .footer a {
  color: var(--wrc-gold);
  text-decoration: none;
}

.page-home .footer a:hover {
  text-decoration: underline;
}

.page-home .footer-info p {
  margin: 0.4rem auto;
  max-width: 48rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}

/* Theme toggle stays functional; slight polish */
.page-home .theme-toggle {
  bottom: 24px;
  right: 24px;
}

@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .home-hero__grid {
    grid-template-columns: 1fr;
  }

  .home-hero__media {
    min-height: 420px;
    border-radius: var(--wrc-radius);
    order: -1;
  }

  .home-hero__media::before {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, transparent 35%),
      linear-gradient(180deg, transparent 45%, rgba(17, 34, 80, 0.45) 100%);
  }

  .home-hero__copy {
    max-width: none;
  }

  .home-mission__grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-mission__media {
    grid-column: 1 / -1;
    min-height: 320px;
  }

  .home-mission__media img {
    min-height: 320px;
  }

  .home-quick__primary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .home-credibility__card {
    grid-template-columns: 1fr 1fr;
  }

  .home-credibility__item:nth-child(2) {
    border-right: none;
  }

  .home-credibility__item:nth-child(1),
  .home-credibility__item:nth-child(2) {
    border-bottom: 1px solid var(--wrc-border);
  }

  .home-camps__grid {
    grid-template-columns: 1fr;
  }

  .page-home .sponsors-logos,
  .page-home [data-wrc-sponsor-logos] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .page-home {
    --wrc-header-offset: 96px;
  }

  .home-shell {
    width: min(100% - 1.5rem, var(--wrc-max));
  }

  .home-section {
    padding: 2.75rem 0;
  }

  .home-hero {
    padding-top: calc(var(--wrc-header-offset) + 0.75rem);
    padding-bottom: 2.5rem;
  }

  .home-hero__rail {
    display: none;
  }

  .home-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-hero__actions .home-btn {
    width: 100%;
  }

  .home-credibility {
    margin-top: -1.25rem;
  }

  .home-credibility__card {
    grid-template-columns: 1fr;
  }

  .home-credibility__item {
    border-right: none;
    border-bottom: 1px solid var(--wrc-border);
  }

  .home-credibility__item:last-child {
    border-bottom: none;
  }

  .home-mission__grid {
    grid-template-columns: 1fr;
  }

  .home-quick__primary {
    grid-template-columns: 1fr 1fr;
  }

  .page-home .carousel-slide,
  .page-home .carousel-slide img {
    min-height: 280px;
    height: 280px;
  }
}

@media (max-width: 430px) {
  .home-quick__primary {
    grid-template-columns: 1fr;
  }

  .page-home .global-site-header .site-logo {
    width: 118px;
  }
}
