/* "An arrow with fletchings hits the target." (Figma: home / Frame 6, 1446 x 619).
   Full-bleed: background spans the viewport. Copy sits in the 172 / 132 / 667 / 132
   padded area (inner 607 x 355). Image fill is Crop, full width. */

.fl-fletchings {
  position: relative;
  box-sizing: border-box;
  height: 619px;
  overflow: hidden;
  background: var(--fl-surface);
}

.fl-fletchings__art {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 48%;
  /* Figma Frame 6: image fill at 38% over #F2F3F5 so the stipple reads light. */
  opacity: 0.38;
  pointer-events: none;
}

.fl-fletchings__stage {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  width: min(1446px, 100%);
  height: 100%;
  margin: 0 auto;
  padding: 132px 667px 132px 172px;
}

.fl-fletchings__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  box-sizing: border-box;
  width: 607px;
  height: 355px;
  padding: 0 24px;
  border-radius: 5px;
  background: var(--fl-white);
}

.fl-fletchings__title {
  width: 559px;
  max-width: 100%;
  margin: 0;
  color: var(--fl-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 60px;
  font-weight: 400;
  letter-spacing: -1.5px;
  line-height: 61.2px;
}

.fl-fletchings__script {
  color: var(--fl-green);
  font-family: var(--fl-font-script);
  font-weight: 700;
}

.fl-fletchings__body {
  width: 559px;
  max-width: 100%;
  margin: 0;
  color: var(--fl-text-muted);
  font-family: var(--fl-font-sans);
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 32.5px;
}

/* Section reveal — the copy card enters from the left. The target artwork is
   the section background, cropped with Figma's fill values. */
.fl-fletchings--armed .fl-fletchings__copy {
  opacity: 0;
}

.fl-fletchings--play .fl-fletchings__copy {
  animation: fl-fletchings-copy-in 1800ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes fl-fletchings-copy-in {
  from {
    opacity: 0;
    transform: translateX(-36px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fl-fletchings--armed .fl-fletchings__copy,
  .fl-fletchings--play .fl-fletchings__copy {
    opacity: 1;
    animation: none;
    transform: none;
  }
}

@media (max-width: 1445px) {
  .fl-fletchings__stage {
    padding: 132px max(24px, calc((100% - 1180px) / 2 + 40px));
  }
}

@media (max-width: 1023px) {
  .fl-fletchings {
    height: auto;
    min-height: 480px;
  }

  .fl-fletchings__stage {
    padding: 72px 48px;
  }

  .fl-fletchings__copy,
  .fl-fletchings__title,
  .fl-fletchings__body {
    width: 100%;
    height: auto;
  }

  .fl-fletchings__copy {
    gap: 24px;
    padding: 24px 20px;
    text-align: center;
    align-items: center;
  }

  .fl-fletchings__title {
    font-size: 40px;
    letter-spacing: -1px;
    line-height: 1.05;
  }

  .fl-fletchings__body {
    font-size: 16px;
    line-height: 26px;
  }
}
