/* =========================================================
   Hero — design system §4.2, §3 (signature element), §6 (motion)
   ========================================================= */

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--paper-50);
}

/* Diagonal split background — abstracted version of the fixture-card motif,
   navy on one side / paper on the other, per design system §3 */
.hero-diagonal {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    102deg,
    var(--paper-50) 0%,
    var(--paper-50) 58%,
    var(--navy-900) 58.3%,
    var(--navy-900) 100%
  );
}

/* The hand-drawn seam line tracing the diagonal — SVG, animated on load */
.hero-seam {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-seam path {
  fill: none;
  stroke: rgba(247, 246, 242, 0.35);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  animation: draw-seam 900ms ease-out forwards;
  animation-delay: 150ms;
}

@keyframes draw-seam {
  to { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-seam path {
    animation: none;
    stroke-dashoffset: 0;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red-500);
  margin: 0 0 var(--space-3);
}

.hero-headline {
  font-family: var(--font-display);
  font-stretch: condensed;
  font-weight: 800;
  font-size: clamp(2.5rem, 8vw, 4rem);
  line-height: 1.02;
  color: var(--navy-900);
  margin: 0 0 var(--space-4);
  letter-spacing: -0.01em;
}

.hero-subhead {
  font-size: var(--text-lg);
  color: var(--ink-500);
  margin: 0 0 var(--space-8);
}

.hero-ctas {
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
  flex-wrap: wrap;
}

/* =========================================================
   Next fixture strip — design system §4.2
   ========================================================= */

.next-fixtures {
  position: relative;
  z-index: 2;
}

.next-fixtures-label {
  font-family: var(--font-display);
  font-stretch: condensed;
  font-weight: 700;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--navy-900);
  margin: 0 0 var(--space-4);
}

.next-fixtures-empty {
  font-size: var(--text-base);
  color: var(--ink-500);
  font-style: italic;
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: var(--space-16) 0;
  }

  .hero-diagonal {
    background: linear-gradient(
      180deg,
      var(--paper-50) 0%,
      var(--paper-50) 75%,
      var(--navy-900) 75.3%,
      var(--navy-900) 100%
    );
  }
}
