/* Critical CSS — enough to render without a style flash.
   Kept small; everything non-critical stays in index.css.
   Extracted from index.html <style> to avoid a Vite Windows
   html-inline-proxy path-normalization bug during production builds. */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
}
body {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    sans-serif;
  background: #ece5d6;
  color: #1f190d;
  -webkit-font-smoothing: antialiased;
}
#root {
  min-height: 100vh;
}
.hero-skel {
  min-height: 85vh;
  background: linear-gradient(180deg, #fbf7ee 0%, #ece5d6 100%);
}
