/**
 * Fallback stylesheet — loaded from /critical.css (no webpack hash).
 * If the main Tailwind bundle fails to load in dev (stale .next, Safari, HMR),
 * you still get readable layout until you hard-refresh or run `npm run dev:clean`.
 */
:root {
  --cream: #fdf8ed;
  --text-dark: #2d2d2d;
  --btn-red: #8c1515;
}

html {
  box-sizing: border-box;
}
*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.5;
}

main.app {
  min-height: 100vh;
}

a {
  color: var(--btn-red);
}

button {
  font: inherit;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
}
