/* ==============================================================
   RHEA REIGNS  ·  LINKS PAGE
   Just words in a row. Modern, sleek, minimal.
   ============================================================== */

.links-page {
  padding: 160px 40px 180px;
  min-height: calc(100vh - 100px);
}

.links-page__inner {
  max-width: 880px;
  margin: 0 auto;
}

/* ============ HEADER ============ */
.links-page__head {
  text-align: center;
  margin-bottom: 96px;
}
.links-page__head .kicker {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ============ LINK LIST ============ */
.links-list {
  display: block;
}

.link-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 40px 0;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  position: relative;
  opacity: 0;
  animation: link-rise .8s cubic-bezier(.2,.7,.2,1) forwards;
}
.link-row:first-child {
  border-top: 1px solid var(--rule);
}

/* Staggered entrance */
.link-row:nth-child(1) { animation-delay: 0.05s; }
.link-row:nth-child(2) { animation-delay: 0.13s; }
.link-row:nth-child(3) { animation-delay: 0.21s; }
.link-row:nth-child(4) { animation-delay: 0.29s; }
.link-row:nth-child(5) { animation-delay: 0.37s; }
.link-row:nth-child(6) { animation-delay: 0.45s; }
.link-row:nth-child(7) { animation-delay: 0.53s; }
.link-row:nth-child(8) { animation-delay: 0.61s; }

@keyframes link-rise {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.link-row__name {
  font-family: 'Italiana', serif;
  font-size: clamp(40px, 5.4vw, 72px);
  font-weight: 400;
  color: var(--bone);
  line-height: 1;
  letter-spacing: 0.015em;
  transition: color .45s ease, transform .55s cubic-bezier(.2,.7,.2,1);
  display: inline-block;
}

.link-row__arrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(24px, 2.6vw, 36px);
  color: var(--gold);
  letter-spacing: 0;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
  display: inline-block;
  align-self: center;
  line-height: 1;
}

/* Hover — whole row leans toward destination */
.link-row:hover .link-row__name {
  color: var(--gold);
  transform: translateX(16px);
}
.link-row:hover .link-row__arrow {
  transform: translateX(16px);
}

/* Keyboard focus */
.link-row:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 6px;
}
.link-row:focus-visible .link-row__name { color: var(--gold); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .link-row {
    opacity: 1;
    animation: none;
  }
  .link-row:hover .link-row__name,
  .link-row:hover .link-row__arrow {
    transform: none;
  }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 720px) {
  .links-page {
    padding: 110px 22px 120px;
  }
  .links-page__head {
    margin-bottom: 64px;
  }
  .links-page__head .kicker {
    font-size: 10px;
    letter-spacing: 0.42em;
  }
  .link-row {
    padding: 28px 0;
  }
  .link-row__name {
    font-size: clamp(32px, 9vw, 44px);
  }
  .link-row__arrow {
    font-size: 22px;
  }
  .link-row:hover .link-row__name,
  .link-row:hover .link-row__arrow {
    transform: translateX(8px);
  }
}
