/* ============================================================
   GLOBAL RESET & BASE STYLES
   ============================================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--fb);
  background: var(--bg);
  color: var(--td);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

/* ── Shared Container ── */
.ct {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
