/* Sticky footer shell + base document layout (pairs with index.html chrome) */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  min-height: 100%;
}

html {
  background-color: #0a0a0a;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #fff !important;
  position: relative;
  z-index: 0;
  background: transparent;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
}

a, button {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

main.site-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
