/* Feather & Talon — LCA Fan Shop landing */

.page-ft {
  scroll-padding-top: 6.5rem;
}

@keyframes ft-hero-rise {
  from {
    opacity: 0;
    transform: translateY(1.1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ft-hero-zoom {
  from {
    transform: scale(1.05);
  }
  to {
    transform: scale(1);
  }
}

@keyframes ft-gold-line {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-ft .ft-hero__content,
  .page-ft .ft-hero__media,
  .page-ft .ft-hero__accent {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
}

/* Full-bleed hero — one job: send visitors to the shop */
.page-ft .ft-hero {
  position: relative;
  min-height: calc(100svh - 7.5rem);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--white);
  background: var(--green-dark);
}

.page-ft .ft-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  animation: ft-hero-zoom 10s ease-out forwards;
}

.page-ft .ft-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 48, 21, 0.28) 0%, rgba(0, 48, 21, 0.55) 42%, rgba(0, 48, 21, 0.92) 100%),
    radial-gradient(ellipse at 80% 15%, rgba(255, 184, 28, 0.16) 0%, transparent 45%);
}

.page-ft .ft-hero__content {
  position: relative;
  z-index: 1;
  max-width: 38rem;
  padding: clamp(3.25rem, 9vw, 5.5rem) 0 clamp(3rem, 7vw, 4.5rem);
  animation: ft-hero-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-ft .ft-hero__eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lca-gold);
}

.page-ft .ft-hero__brand {
  margin: 0 0 0.85rem;
  font-family: var(--font-headline);
  font-weight: 400;
  font-size: clamp(2.75rem, 8vw, 4.75rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
}

.page-ft .ft-hero__accent {
  display: block;
  width: 3.5rem;
  height: 3px;
  margin: 0 0 1.35rem;
  background: var(--lca-gold);
  transform-origin: left center;
  animation: ft-gold-line 0.7s 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.page-ft .ft-hero__title {
  margin: 0 0 0.85rem;
  font-family: var(--font-subhead);
  font-weight: 700;
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  line-height: 1.25;
  color: var(--white);
}

.page-ft .ft-hero__lead {
  margin: 0 0 1.75rem;
  max-width: 28rem;
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}

.page-ft .ft-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.page-ft .ft-hero .btn--primary {
  min-width: 12rem;
  text-align: center;
}

@media (max-width: 640px) {
  .page-ft .ft-hero {
    min-height: calc(100svh - 6.5rem);
    align-items: flex-end;
  }

  .page-ft .ft-hero__media {
    object-position: center 25%;
  }

  .page-ft .ft-hero__actions .btn {
    width: 100%;
  }
}
