/* ============================================================
   Mobile gate — desktop-only notice.
   Shown ≤768px on every page; hidden on desktop. Self-contained
   (binary palette + DM Sans/Caveat, no token dependency so it
   looks identical whether loaded beside landing.css or ds-tokens).
   ============================================================ */

/* Hidden by default (desktop) */
.mobile-gate { display: none; }

@media (max-width: 768px) {
  .mobile-gate {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 9vw;
    background: #f5f5f0;
    color: #0e0e0e;
    font-family: 'DM Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
  }

  .mg-inner { max-width: 38ch; }

  .mg-brand {
    display: block;
    margin-bottom: 7vh;
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .mg-title {
    margin: 0 0 24px;
    font-size: clamp(30px, 9vw, 46px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.03em;
  }

  .mg-body {
    margin: 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.6;
  }

  .mg-doodle {
    display: block;
    margin-top: 32px;
    font-family: 'Caveat', cursive;
    font-weight: 600;
    font-size: 21px;
    color: #888880;
    transform: rotate(-2deg);
  }
}
