/* =========================
   WELCOME SECTION (FULL SCREEN)
========================= */

.welcome {
  position: relative;
  min-height: 100svh; /* full screen, mobile-safe */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;

  background:
    /* linear-gradient(rgba(246, 244, 238, 0.88), rgba(246, 244, 238, 0.88)), */ url("../assets/images/welcome-bg.png")
    center / cover no-repeat;
}

.welcome-inner {
  max-width: 720px;
  text-align: center;
}

.welcome-eyebrow {
  margin: 0 0 32px;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(18, 18, 18, 0.7);
}

.welcome-text {
  margin: 0 auto;
  font-size: clamp(16px, 2.2vw, 18px);
  line-height: 2;
  color: rgba(18, 18, 18, 0.78);
}

.welcome-signoff {
  margin-top: 32px;
  font-size: 18px;
  color: rgba(18, 18, 18, 0.85);
}

/* Mobile polish */
@media (max-width: 480px) {
  .welcome-text {
    line-height: 1.9;
  }
}
