/* ── Hero — full-bleed dark editorial ────────── */

.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--color-base);
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(15, 8, 2, 0.68);
  z-index: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 6rem;
  width: 100%;
}

/* ── Eyebrow ──────────────────────────────────── */
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-family: var(--font-body);
  margin-bottom: 2.5rem;
}

.hero__eyebrow::before,
.hero__eyebrow::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1.5px;
  background: var(--color-accent);
  flex-shrink: 0;
}

/* ── 3-line headline (homepage) ───────────────── */
.hero__headline {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0 auto 2.5rem;
  max-width: 1080px;
}

.hero__line {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(2.25rem, 4vw, 3.75rem);
  font-weight: 300;
  letter-spacing: 0.01em;
  line-height: 1.2;
  color: var(--color-text-light);
}

.hero__line--accent {
  color: var(--color-accent);
}

/* ── Static tagline row ───────────────────────── */
.hero__tagline {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(253, 252, 249, 0.45);
  margin-bottom: 2.5rem;
}

/* ── Description (about page hero) ───────────── */
.hero__description {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-family: var(--font-body);
  font-weight: 300;
  color: rgba(253, 252, 249, 0.72);
  line-height: 1.8;
  max-width: 54ch;
  margin: 0 auto 1.75rem;
}

/* ── Pillars tagline (about page hero) ─────────── */
.hero__pillars {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
  margin-bottom: 2.5rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(253, 252, 249, 0.42);
}

.hero__pillar-dot {
  color: var(--color-accent);
  font-size: 0.875rem;
  letter-spacing: 0;
  opacity: 0.75;
}

/* ── Cycling animated text ────────────────────── */
.hero__cycling-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.75rem;
}

.hero__cycling-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(253, 252, 249, 0.45);
  font-family: var(--font-body);
  flex-shrink: 0;
}

.hero__cycling {
  position: relative;
  height: 2.5rem;
  overflow: hidden;
  min-width: 260px;
}

.hero__cycle-item {
  position: absolute;
  left: 0;
  right: 0;
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--color-accent);
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(100%);
  animation: cycle-word 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.hero__cycle-item:nth-child(1) { animation-delay: 0s; }
.hero__cycle-item:nth-child(2) { animation-delay: 2s; }
.hero__cycle-item:nth-child(3) { animation-delay: 4s; }
.hero__cycle-item:nth-child(4) { animation-delay: 6s; }

@keyframes cycle-word {
  0%     { opacity: 0; transform: translateY(100%); }
  5%     { opacity: 1; transform: translateY(0); }
  22%    { opacity: 1; transform: translateY(0); }
  27%    { opacity: 0; transform: translateY(-100%); }
  28%    { opacity: 0; transform: translateY(100%); }
  100%   { opacity: 0; transform: translateY(100%); }
}

/* ── CTA buttons ──────────────────────────────── */
.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ── About page hero variant ──────────────────── */
.hero--about {
  min-height: 75vh;
  background-image: none;
}

.hero--about::before {
  background: linear-gradient(135deg, #1a0d05 0%, #1f1f1f 60%, #241208 100%);
}

.hero--about .hero__inner {
  padding-bottom: 3rem;
}

.hero--about .hero__headline {
  display: block;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  letter-spacing: 0.05em;
  line-height: 1.1;
  color: var(--color-text-light);
  font-family: var(--font-display);
  font-weight: 400;
  max-width: 820px;
  margin: 0 auto 1.5rem;
}

/* ── Scroll-down arrow ────────────────────────── */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  color: rgba(253, 252, 249, 0.45);
  transition: color 0.2s ease;
  text-decoration: none;
  animation: arrow-bounce 2.2s ease-in-out infinite;
  z-index: 2;
}

/* ── Scroll arrow stays above overlay ── */
.hero__scroll {
  z-index: 2;
}

.hero__scroll:hover {
  color: rgba(253, 252, 249, 0.85);
}

.hero__scroll-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

@keyframes arrow-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  55%       { transform: translateX(-50%) translateY(9px); }
}

/* ── Mobile ───────────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
  }

  .hero__line {
    font-size: clamp(2rem, 6.5vw, 3rem);
  }

  .hero__cycling {
    min-width: 160px;
  }
}

@media (max-width: 480px) {
  .hero__inner {
    padding-top: 4rem;
    padding-bottom: 5rem;
  }
}
