/* ============================================================
   Donk Orleone — Link Page
   Static rebuild of the DEADREAD design handoff.
   ============================================================ */

/* ---------- Self-hosted fonts ---------- */
/* Brand display font (Squealer) — available but not currently used. */
@font-face {
  font-family: 'Squealer';
  src: url('assets/Squealer.woff2') format('woff2');
  font-display: swap;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
}

/* ---------- Stage (full-viewport dark backdrop) ---------- */
.stage {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 56px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: #0c0807;
  font-family: 'EB Garamond', serif;
  overflow: hidden;
}

/* ---------- Decorative background layers ---------- */
.bg-vignette {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 240px;
  background: linear-gradient(transparent, rgba(120, 18, 14, 0.1));
  pointer-events: none;
}

/* ---------- Content column ---------- */
.column {
  position: relative; /* sits above the decorative layers */
  width: 100%;
  max-width: 420px;
  text-align: center;
}

/* ---------- Avatar ---------- */
.avatar {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 30px auto 0;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 38%, #3a1310, #0d0807 72%);
  box-shadow:
    0 0 0 2px rgba(193, 39, 29, 0.6),
    0 0 0 8px rgba(193, 39, 29, 0.12),
    0 16px 34px rgba(0, 0, 0, 0.55);
}

.avatar img {
  position: absolute;
  inset: 5px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
}

/* ---------- Name + role ---------- */
.name {
  margin: 20px 0 0;
  font-family: 'EB Garamond', serif;
  font-weight: 500;
  font-size: 44px;
  line-height: 1;
  color: #f3ede7;
}

.role {
  margin: 10px 0 0;
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 16px;
  color: #bcb3a9;
}

/* ---------- Link button stack ---------- */
.links {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 30px;
  text-align: left;
}

.link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 17px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: #17100e;
  text-decoration: none;
  transition: all 0.18s ease;
}

.link:hover {
  background: #1f1411;
  border-color: rgba(193, 39, 29, 0.7);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
}

.link:focus-visible {
  outline: 2px solid #c1271d;
  outline-offset: 2px;
}

.link__icon {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9px;
  background: rgba(193, 39, 29, 0.15);
  color: #e0463a;
}

.link__icon--spade {
  font-size: 20px;
}

.link__icon--play {
  font-size: 14px;
  padding-left: 2px; /* optically center the triangle glyph */
}

.link__icon--x {
  font-family: system-ui, sans-serif;
  font-weight: 800;
  font-size: 17px;
}

.link__icon--mail {
  font-size: 18px;
}

.link__text {
  flex: 1;
  min-width: 0;
}

.link__title {
  display: block;
  font-family: 'EB Garamond', serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.1;
  color: #f1ece6;
}

.link__sub {
  display: block;
  font-family: 'EB Garamond', serif;
  font-size: 14px;
  color: #938a80;
}

.link__arrow {
  flex: none;
  font-size: 17px;
  color: #6c635b;
}

/* ---------- Quote + footer ---------- */
.quote {
  margin: 30px 0 0;
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: #5f574f;
}

.copyright {
  margin-top: 34px;
  font-family: system-ui, sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #4f483f;
}

/* ---------- Respect reduced-motion preferences ---------- */
@media (prefers-reduced-motion: reduce) {
  .link {
    transition: none;
  }
  .link:hover {
    transform: none;
  }
}
