/* ── HERO ──────────────────────────────────────────── */
.headline-block {
  padding: 64px 48px 0;
  text-align: center;
  animation: fadeIn 0.5s ease both;
}

.sf-tag {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 6px 16px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.headline-block h1 {
  font-size: clamp(36px, 5.5vw, 72px);
  line-height: 0.92;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  font-family: var(--font-impact);
  margin-bottom: 0;
}

.headline-block h1 .outline {
  -webkit-text-stroke: 2px var(--black);
  color: transparent;
  display: block;
}

/* ── SUBHEAD ───────────────────────────────────────── */
.subhead {
  padding: 20px 48px 52px;
  text-align: center;
  border-bottom: var(--rule);
  animation: fadeIn 0.5s ease both;
}

.subhead p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-body);
  font-style: italic;
  max-width: 620px;
  margin: 0 auto;
  text-transform: lowercase;
}

/* ── CARDS AREA ────────────────────────────────────── */
.cards-area {
  padding: 48px 48px 72px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── FOOTER ────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 32px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo {
  font-size: 26px;
  font-weight: 900;
  font-family: var(--font-impact);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-mid {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #555;
  text-align: center;
  line-height: 1.8;
}

.footer-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-icon {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.footer-icon:hover { color: var(--white); }
