/* Taplink page — 1:1 with the original: cream background, centered ~600px column,
   hero banner, serif heading, sage-green uppercase buttons, social icon row. */

.link-page {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  padding: 22px 16px 36px;
}

.link-col {
  width: 100%;
  max-width: var(--maxw);
  display: flex;
  flex-direction: column;
}

/* Hero banner fades into the cream background at the bottom (1:1 with the
   original taplink). The mask makes the dark "avirtoni" banner blend out. */
.link-hero {
  width: 100%;
  margin-bottom: 8px;
  -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
}

.link-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.link-heading {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: var(--green-dark);
  text-align: center;
  margin: 0 0 15px;
}

.link-text {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
  color: var(--green-dark);
  text-align: center;
  white-space: pre-line;
  margin: 0 0 22px;
}

.link-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green);
  color: var(--white);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.4px;
  text-decoration: none;
  padding: 16px 18px;
  border-radius: var(--radius);
  box-shadow: 0 6px 0 var(--green-shadow);
  margin-bottom: 15px;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.link-btn:hover {
  transform: translateY(-1px);
}

.link-btn:active {
  transform: translateY(3px);
  box-shadow: 0 3px 0 var(--green-shadow);
}

.link-btn svg {
  flex: 0 0 auto;
}

.link-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.link-social {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 5px 0 var(--green-shadow);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.link-social:hover {
  transform: translateY(-1px);
}

.link-social:active {
  transform: translateY(2px);
  box-shadow: 0 3px 0 var(--green-shadow);
}

.link-footer {
  margin-top: 26px;
  text-align: center;
}

.link-footer img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  margin: 0 auto 6px;
}

.link-footer span {
  font-size: 12px;
  color: var(--muted);
}
