/* =============================================================================
   Featured Section — two-column: dark left panel + parallax right image
   ============================================================================= */

.featured-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* No overflow:hidden — it breaks background-attachment:fixed */
}

/* ── LEFT: dark brown content panel ─────────────────────────────────────────── */
.featured-section__left {
  background: #3b1008;
  color: #fff;
  padding: var(--space-16) var(--space-12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-6);
}

.featured-section__headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}

.featured-section__body {
  font-size: var(--font-size-sm);
  line-height: 1.75;
  color: rgba(255,255,255,.78);
  max-width: 380px;
  margin: 0;
}

/* CTA pill */
.featured-section__cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255,255,255,.45);
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.9);
  font-size: var(--font-size-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: background var(--transition-fast), border-color var(--transition-fast);
}
.featured-section__cta:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.7);
  color: #fff;
}

/* ── RIGHT: true parallax panel ──────────────────────────────────────────────
   background-attachment:fixed keeps the image stationary in the viewport
   while the page scrolls. The section height determines how much of the
   parallax travel is visible — 100vh means the full image is revealed
   as the section scrolls through the viewport.
   ─────────────────────────────────────────────────────────────────────────── */
.featured-section__right {
  position: relative;
  background-color: #0a0a1a;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  /* min-height matches left panel but never less than viewport height
     so the full image is revealed as you scroll through the section */
  min-height: max(480px, 70vh);
}

/* All direct children sit above the background */
.featured-section__right > * {
  position: relative;
  z-index: 1;
}

/* Video card — bottom-right overlay */
.featured-section__video-card {
  position: absolute;
  bottom: var(--space-6);
  right: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  max-width: 280px;
}

.featured-section__video-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.featured-section__video-title {
  font-size: var(--font-size-sm);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

/* Play button circle */
.featured-section__play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  border: 1.5px solid rgba(255,255,255,.5);
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
  transition: background var(--transition-fast);
}
.featured-section__play-btn:hover {
  background: rgba(255,255,255,.35);
  color: #fff;
}

/* ── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .featured-section {
    grid-template-columns: 1fr;
  }
  .featured-section__right {
    min-height: 75vw; /* proportional on tablet */
    /* iOS Safari doesn't support background-attachment:fixed on elements */
    background-attachment: scroll;
    background-size: cover;
  }
  .featured-section__left {
    padding: var(--space-10) var(--space-6);
  }
}

@media (max-width: 480px) {
  .featured-section__left {
    padding: var(--space-8) var(--space-4);
  }
  .featured-section__right {
    min-height: 280px;
  }
  .featured-section__video-card {
    right: var(--space-3);
    bottom: var(--space-3);
    max-width: 220px;
  }
}
