/* ============================================================
   Base — saf siyah, gradient yok, glow yok
   ============================================================ */

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

html {
  /* scroll-behavior: smooth KAPATILDI — filter-bar.js custom JS easing
     scrollTo'sunu bozuyordu (her step native smooth ile bekliyordu). */
  scroll-padding-top: 100px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--t-base);
  line-height: 1.5;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, textarea { font: inherit; color: inherit; }

::selection { background: var(--red); color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.skip-link {
  position: absolute; left: -9999px; top: var(--s-3);
  background: var(--red); color: var(--ink);
  padding: var(--s-2) var(--s-4); border-radius: var(--r-md);
  z-index: 2000; font-weight: 600;
}
.skip-link:focus { left: var(--s-4); }

.wrap { max-width: var(--container); margin: 0 auto; padding-inline: var(--s-5); }

.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { scrollbar-width: none; }

:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: var(--r-sm); }

body.is-locked { overflow: hidden; }

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