* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  -webkit-font-smoothing: antialiased;
  overscroll-behavior-y: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
input {
  font-family: inherit;
}
::placeholder { color: #9a938c; }

.frame {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  background: #f6f3ee;
  color: #211d18;
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  position: relative;
}

@media print {
  .no-print { display: none !important; }
  .frame { min-height: 0; }
  * { -webkit-print-color-adjust: exact; print-color-adjust: exact; }
}
