/* ==========================================================================
   Elit-Stal — global (reset, zmienne, typografia bazowa)
   ========================================================================== */

:root {
  --bg: #08111d;
  --card: #162135;
  --card-glass: rgba(22, 33, 53, 0.62);
  --orange: #ff7700;
  --orange-soft: rgba(255, 119, 0, 0.18);
  --gold: #fbbf24;
  --text: #ffffff;
  --gray: #9aa6b2;
  --muted: rgba(255, 255, 255, 0.75);
  --max-w: 1440px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --font: "Poppins", system-ui, sans-serif;
  --section-py: 96px;
  --grid-gap: 26px;
  --header-h: 94px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  padding-top: var(--header-h);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

@media (max-width: 640px) {
  :root {
    --header-h: 76px;
  }
}

.site-main {
  position: relative;
}
