/* ==========================================================
   ARCADIA v7_15 — MOBILE ANCHOR ALIGNMENT OVERLAY
   Baseline: v7_14 accepted mobile dropdown/retreat navigation.
   Purpose: align top-menu anchor destinations so the section title
   is immediately visible after tapping a menu item. No color,
   logo, hero image, Worker/D1, Approval Queue, Operational
   Continuity, or no-autonomous-public-action changes.
   ========================================================== */

/* Fallback for normal browser hash scrolling. The JavaScript overlay
   below performs the precise mobile landing calculation; these values
   protect direct hash links and desktop/tablet behavior. */
html {
  scroll-padding-top: 92px;
}

section[id],
main[id] {
  scroll-margin-top: 92px;
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 78px !important;
  }

  section[id],
  main[id] {
    scroll-margin-top: 78px !important;
  }
}

@media (max-width: 520px) {
  html {
    scroll-padding-top: 72px !important;
  }

  section[id],
  main[id] {
    scroll-margin-top: 72px !important;
  }
}
