/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-block: var(--space-6);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.6s var(--ease-lux);
}
.hero-bg__slide.active { opacity: 1; }

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(11,11,13,0.6) 0%, rgba(11,11,13,0.94) 78%);
  z-index: 1;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease-lux);
}
.hero-canvas.ready { opacity: 1; }
.hero-canvas.ready ~ .hero-bg { opacity: 0; transition: opacity var(--dur-slow) var(--ease-lux); }
@media (pointer: coarse) {
  .hero-canvas { display: none; }
}

.hero-copy {
  position: relative;
  z-index: 3;
  text-align: center;
  pointer-events: none;
  min-width: 0;
  width: 100%;
}
.hero-copy .btn { pointer-events: auto; }
.hero-copy .eyebrow { justify-content: center; display: flex; }
.hero-lede {
  max-width: 46ch;
  margin: var(--space-3) auto var(--space-4);
  color: var(--color-text-muted);
  font-size: 1.15rem;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  flex-wrap: wrap;
  pointer-events: auto;
}
.btn--ghost {
  border-color: var(--color-border-strong);
  color: var(--color-text-muted);
}
.btn--ghost:hover {
  background: var(--color-burgundy);
  border-color: var(--color-burgundy);
  color: var(--color-text);
}

.hero-scroll-cue {
  position: absolute;
  bottom: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.hero-scroll-cue span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(var(--color-gold), transparent);
}

/* Section spacing shared by home sections */
.video-feature,
.showcase-section,
.news-section,
.gallery-preview-section,
.team-teaser {
  padding-block: var(--space-7);
  text-align: center;
}
.video-feature .eyebrow,
.showcase-section .eyebrow,
.news-section .eyebrow,
.gallery-preview-section .eyebrow {
  justify-content: center;
  display: flex;
}
.showcase-section { border-top: 1px solid var(--color-border); }
.news-section { border-top: 1px solid var(--color-border); }
.gallery-preview-section { border-top: 1px solid var(--color-border); }

.video-facade {
  max-width: 900px;
  margin: var(--space-4) auto 0;
  text-align: left;
}

.showcase-fallback-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  text-align: left;
}
@media (max-width: 900px) {
  .showcase-fallback-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .showcase-fallback-grid { grid-template-columns: 1fr; }
}

.gallery-grid,
.collection-tiles {
  text-align: left;
}

/* Team teaser */
.team-teaser { border-top: 1px solid var(--color-border); }
.team-teaser-grid { max-width: 60ch; margin-inline: auto; }
.team-teaser-copy p { color: var(--color-text-muted); margin-block: var(--space-2) var(--space-3); }

@media (max-width: 860px) {
  .video-facade { margin-top: var(--space-3); }
}
