
/* ==== GJS Studio Visual Parity Layer ==== */

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

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
}

body {
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  color: #111827;
  background: #ffffff;
}

/* Headings */
h1 { font-size: 3rem; line-height: 1.2; }
h2 { font-size: 2.25rem; line-height: 1.25; }
h3 { font-size: 1.75rem; }

/* Layout containers */
.container,
.gjs-container {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1rem;
}

/* Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }
}
