.follow-page { max-width: 880px; }

.follow-hero { text-align: center; margin-bottom: 3rem; }
.follow-hero h1 { margin: 0 0 0.75rem; font-size: clamp(2rem, 5vw, 3rem); }
.follow-hero .lede {
  color: var(--fg-dim);
  max-width: 36rem;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1.05rem;
}

.social-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 2rem 0 3rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg);
  text-decoration: none;
  transition: transform 120ms ease, border-color 120ms ease, color 120ms ease;
}
.social-card:hover,
.social-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--accent);
  color: var(--fg);
  outline: none;
}
.social-card h2 {
  margin: 0;
  font-size: 1.05rem;
  font-family: "Playfair Display", Georgia, serif;
  letter-spacing: 0.02em;
}
.social-handle {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

.social-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(201, 161, 91, 0.12);
  color: var(--accent);
}

/* Per-platform color tints on hover so the buttons feel "branded" without
 * straying from the Feral palette in their resting state. */
.social-card--facebook:hover .social-icon { background: rgba(24, 119, 242, 0.18); color: #4992ff; }
.social-card--instagram:hover .social-icon { background: rgba(225, 48, 108, 0.18); color: #f8709c; }
.social-card--tiktok:hover .social-icon { background: rgba(255, 255, 255, 0.12); color: var(--fg); }

/* ── Mailer ─────────────────────────────────────────────────────────────── */
.mailer-card {
  padding: 1.75rem 2rem;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.mailer-card h2 {
  margin: 0 0 0.4rem;
  font-family: "Playfair Display", Georgia, serif;
}
.mailer-card .muted { margin: 0 0 1rem; }

.mailer-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}
.mailer-field { flex: 1 1 18rem; min-width: 0; }
.mailer-field input[type="email"] {
  width: 100%;
  padding: 0.7rem 0.9rem;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font: inherit;
}
.mailer-field input[type="email"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
  border-color: var(--accent);
}
.mailer-msg {
  flex: 1 1 100%;
  margin: 0.5rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
  min-height: 1.2em;
}
.mailer-msg.is-success { color: var(--accent); }
.mailer-msg.is-error { color: #e88; }
