/* ══════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════ */
.contact-section {
  background: var(--ink);
  padding-block: var(--sp-4xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Doodle lines background */
.contact-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 18px,
      rgb(255 255 255 / 3%) 18px,
      rgb(255 255 255 / 3%) 19px
    );
  pointer-events: none;
}

.contact-inner { position: relative; z-index: 1; }
.contact-section h2 {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--paper);
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-lg);
}
.contact-section p {
  color: rgb(245 239 227 / 55%);
  font-size: var(--text-md);
  max-width: 36rem;
  margin: 0 auto var(--sp-2xl);
}
