/* base.css — reset + typography baseline (luxury-agency.pro/shared) */

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

html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  margin: 0;
  font-family: var(--body-font, 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text, #F5F1E8);
  background: var(--bg, #0A0A0A);
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
}

img, video, iframe, svg { display: block; max-width: 100%; }

button, input, textarea, select { font: inherit; color: inherit; }

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4, h5, h6, p { margin: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
