/* ==========================================================================
   Noodle Dog: Meteor Clear — progressive enhancement for larger screens
   Loaded after main.css. Mobile layout stays the baseline.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Tablet and up
   -------------------------------------------------------------------------- */

@media (min-width: 768px) {
  :root {
    --header-h: 64px;
    --shell: 1120px;
  }

  h1 { font-size: 50px; }
  h2 { font-size: 34px; }
  h3 { font-size: 20px; }

  body { font-size: 17px; }

  .site-header { padding: 0 28px; gap: 20px; }
  .brand { flex: none; }
  .brand-icon { width: 38px; height: 38px; border-radius: 11px; }
  .brand-name { font-size: 17px; }
  .brand-sub { font-size: 11px; }

  .site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-left: auto;
  }

  .site-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-body);
    transition: color 0.18s var(--ease);
  }

  .site-nav a:hover { color: var(--amber); }
  .site-nav a:active { color: var(--amber-soft); }

  .header-cta { margin-left: 4px; }
  .header-cta-text { display: inline; }
  .header-cta-icon { display: none; }
  .header-cta:hover { background: var(--amber-soft); }

  /* Hero splits into menu board + tilted banner plate */
  .hero { padding: 64px 28px 72px; }

  .hero-inner {
    max-width: var(--shell);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
  }

  .hero-lede { font-size: 18px; }

  .hero-plate { margin-top: 0; }

  .plate-frame {
    transform: rotate(-2.2deg);
    transition: transform 0.4s var(--ease);
  }

  .plate-frame:hover { transform: rotate(0deg) translateY(-4px); }

  .plate-ticket {
    position: absolute;
    right: -10px;
    bottom: -22px;
    margin: 0;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.45);
  }

  .store-row { flex-direction: row; flex-wrap: wrap; }
  .store-btn { width: auto; min-width: 216px; }
  .store-btn--play:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(255, 180, 60, 0.32); }

  .section { padding: 76px 28px; }
  .section-head { margin-bottom: 40px; }
  .section-lede { font-size: 17px; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }

  .feature-card { padding: 26px 22px 22px; transition: transform 0.25s var(--ease), border-color 0.25s var(--ease); }
  .feature-card:hover { transform: translateY(-4px); border-color: rgba(255, 180, 60, 0.5); }
  .feature-card:active { transform: translateY(-1px); }

  .step-list { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .step { flex-direction: column; gap: 10px; padding: 24px; }
  .step-num { font-size: 30px; }

  .download { padding: 88px 28px; }
  .download-icon { width: 108px; height: 108px; }
  .download-lede { font-size: 18px; }
  .store-row--wide { justify-content: center; }

  .site-footer {
    padding: 48px 28px 40px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 18px 28px;
  }

  .footer-brand { margin-bottom: 0; }
  .footer-links { margin-bottom: 0; justify-content: flex-end; }
  .footer-links a:hover { color: var(--amber); }
  .footer-legal { grid-column: 1 / -1; }

  /* The floating bar is a small-screen convenience only */
  .sticky-cta { display: none; }
}

/* --------------------------------------------------------------------------
   Desktop
   -------------------------------------------------------------------------- */

@media (min-width: 1024px) {
  h1 { font-size: 62px; }
  h2 { font-size: 40px; }

  .hero { padding: 88px 40px 104px; }
  .hero-inner { grid-template-columns: 1.05fr 1fr; gap: 56px; }

  .section { padding: 96px 40px; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }

  .site-footer { padding: 56px 40px 44px; }
}
