.socials-page {
  padding: 3rem 0 6rem;
  min-height: calc(100vh - 72px);
}

.socials-hero {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 3rem;
}
.socials-logo {
  width: 140px;
  height: auto;
  margin: 0 auto 1.5rem;
  display: block;
  filter: drop-shadow(0 16px 28px rgba(241, 125, 44, .2));
  animation: gentle-float 6s ease-in-out infinite;
}
.socials-hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3.4rem);
  letter-spacing: -.025em;
  line-height: 1.05;
  margin: 0 0 .75rem;
}
.socials-hero .lead {
  color: var(--text-dim);
  font-size: 1.1rem;
  margin: 0;
}

.socials-grid {
  max-width: 520px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.social-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  position: relative;
  overflow: hidden;
}
.social-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}
.social-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent-bg);
  opacity: 0;
  transition: opacity .18s ease;
  pointer-events: none;
}
.social-card:hover::before { opacity: 1; }
.social-card > * { position: relative; z-index: 1; }

.social-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: white;
  background: var(--accent-bg);
  flex-shrink: 0;
}
.social-text {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.social-platform {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -.01em;
}
.social-handle {
  color: var(--text-dim);
  font-size: .95rem;
  margin-top: .1rem;
}
.social-arrow {
  font-size: 1.4rem;
  color: var(--text-dim);
  transition: transform .18s ease, color .18s ease;
}
.social-card:hover .social-arrow {
  transform: translateX(4px);
  color: var(--text);
}

/* Per-platform accent (used by .social-icon background + hover wash) */
.social-card--ig {
  --accent-bg: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-card--ig:hover::before { opacity: .08; }

.social-card--tt {
  --accent-bg: #000;
}
.social-card--tt:hover::before { opacity: .04; }

.social-card--fb {
  --accent-bg: #1877f2;
}
.social-card--fb:hover::before { opacity: .06; }

.socials-footnote {
  text-align: center;
  margin: 3rem 0 0;
  color: var(--text-dim);
  font-size: .95rem;
}
.socials-footnote a {
  color: var(--orange);
  text-decoration: none;
  font-weight: 500;
}
.socials-footnote a:hover { text-decoration: underline; }
