/* ═══════════════════════════════════════════════════════
   ZERMISH — Responsive Design
   ═══════════════════════════════════════════════════════ */

/* ── Tablet (≤ 1024px) ─────────────────────────────────── */
@media (max-width: 1024px) {
  :root {
    --space-xl:  3rem;
    --space-2xl: 4rem;
    --space-3xl: 7rem;
  }

  .hero__headline-line {
    font-size: clamp(2.4rem, 6vw, 4.5rem);
  }

  .hero__subtitle {
    max-width: 480px;
  }

  .nav__tagline {
    display: none;
  }
}

/* ── Mobile (≤ 768px) ──────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --space-lg:  1.5rem;
    --space-xl:  2rem;
    --space-2xl: 3rem;
    --space-3xl: 5rem;
    --nav-height: 4rem;
  }

  .nav {
    padding: var(--space-sm) var(--space-md);
  }

  .nav__logo {
    font-size: 1.2rem;
    letter-spacing: 0.25em;
  }

  .hero {
    padding: var(--space-2xl) var(--space-md);
  }

  .hero__prelude {
    font-size: 0.62rem;
    letter-spacing: 0.35em;
  }

  .hero__headline-line {
    font-size: clamp(2rem, 8vw, 3.2rem);
  }

  .hero__subtitle {
    font-size: 0.85rem;
    max-width: 360px;
  }

  .hero__actions {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .btn {
    width: 100%;
    max-width: 320px;
  }

  .gold-divider {
    max-width: 200px;
  }

  .footer__inner {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  /* Reduce visual complexity on mobile for performance */
  .light-rays {
    display: none;
  }

  .bg-spotlight {
    width: 300px;
    height: 300px;
  }

  /* Modal responsive */
  .modal {
    padding: var(--space-sm);
  }

  .modal__content {
    padding: var(--space-lg);
  }

  .modal__title {
    font-size: 1.4rem;
  }
}

/* ── Small Mobile (≤ 480px) ────────────────────────────── */
@media (max-width: 480px) {
  :root {
    --space-3xl: 4rem;
  }

  .hero__headline-line {
    font-size: clamp(1.8rem, 10vw, 2.6rem);
  }

  .hero__subtitle {
    font-size: 0.8rem;
    line-height: 1.8;
  }

  .btn {
    padding: 0.9em 2em;
    font-size: 0.68rem;
  }
}

/* ── Large Desktop (≥ 1440px) ──────────────────────────── */
@media (min-width: 1440px) {
  :root {
    --space-3xl: 12rem;
  }

  .hero__headline-line {
    font-size: 6.5rem;
  }

  .hero__subtitle {
    font-size: 1.1rem;
    max-width: 600px;
  }
}

/* ── Ultra Wide (≥ 1920px) ─────────────────────────────── */
@media (min-width: 1920px) {
  .hero__headline-line {
    font-size: 7.5rem;
  }

  .bg-spotlight {
    width: 900px;
    height: 900px;
  }
}
