/* ============================================================
   HERO — Full-viewport video landing section
   ============================================================ */

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--color-bg);
}

/* --- Video background --- */
.hero__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* --- Overlay --- */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.75) 100%);
}

/* --- Content --- */
.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding-inline: var(--section-pad-x);
  max-width: 900px;
}

.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: 400;
  letter-spacing: var(--tracking-super);
  text-transform: uppercase;
  color: var(--color-gold);
  display: block;
  margin-bottom: var(--space-6);
  opacity: 0;
  animation: fadeDown 0.8s ease 0.3s forwards;
}

.hero__names {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 300;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.05;
  display: block;
  opacity: 0;
  animation: fadeUp 1s ease 0.6s forwards;
}

.hero__names span {
  color: var(--color-gold-light);
}

/* Animated underline on hero title */
.hero__underline-wrap {
  display: inline-block;
  position: relative;
}

.hero__underline-svg {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 12px;
  overflow: visible;
  pointer-events: none;
}

.hero__underline-path {
  fill: none;
  stroke: var(--color-gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  animation: drawLine 1.4s ease 1.6s forwards;
}

.hero__tagline {
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 300;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: block;
  margin-top: var(--space-6);
  opacity: 0;
  animation: fadeUp 0.8s ease 1s forwards;
}

.hero__date {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 300;
  font-style: italic;
  color: var(--color-gold-light);
  display: block;
  margin-top: var(--space-3);
  opacity: 0;
  animation: fadeUp 0.8s ease 1.2s forwards;
}

/* --- Divider and CTA --- */
.hero__cta-wrap {
  margin-top: var(--space-12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-6);
  opacity: 0;
  animation: fadeUp 0.8s ease 1.4s forwards;
}

/* --- Scroll indicator --- */
.hero__scroll {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  cursor: pointer;
  opacity: 0;
  animation: fadeIn 0.8s ease 2s forwards;
}

.hero__scroll-text {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: var(--tracking-super);
  text-transform: uppercase;
  color: var(--color-text-faint);
}

.hero__scroll-icon {
  width: 20px;
  height: 20px;
  stroke: var(--color-gold);
  fill: none;
  stroke-width: 1.5;
  animation: bounce 2s ease-in-out infinite;
}

/* --- Quote section (below hero) --- */
.quote-section {
  padding-block: clamp(4rem, 8vw, 7rem);
  background: var(--color-bg);
  text-align: center;
}

.quote-section__text {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.5;
  max-width: 700px;
  margin-inline: auto;
  position: relative;
}

.quote-section__mark {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 0;
  color: var(--color-gold);
  opacity: 0.4;
  vertical-align: -0.5em;
  font-style: normal;
}

.quote-section__mark--open {
  margin-right: 0.15em;
}
.quote-section__mark--close {
  margin-left: 0.15em;
}

.quote-section__attribution {
  display: block;
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-super);
  text-transform: uppercase;
  color: var(--color-gold);
  margin-top: var(--space-8);
}

/* --- Stats bar --- */
.stats-bar {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding-block: var(--space-8);
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  text-align: center;
}

.stats-bar__item {
  padding: var(--space-4);
}

.stats-bar__value {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--color-gold-light);
  display: block;
  line-height: 1;
}

.stats-bar__label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: var(--tracking-super);
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: block;
  margin-top: var(--space-2);
}

.stats-bar__divider {
  width: 1px;
  background: var(--color-border);
  align-self: stretch;
}

@media (max-width: 768px) {
  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__cta-wrap {
    flex-direction: column;
    gap: var(--space-4);
  }
}

@media (max-width: 480px) {
  .stats-bar__grid {
    grid-template-columns: 1fr 1fr;
  }
}
