/* Gentina Engenharia — Base element defaults & utilities.
   Applies the brand type + color foundations to bare HTML. */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  font-weight: var(--fw-regular);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 { margin: 0; color: var(--text-strong); line-height: var(--lh-snug); font-weight: var(--fw-bold); }
p { margin: 0; text-wrap: pretty; }

/* Display titles — Archivo Expanded, uppercase, wide tracking */
.gt-display {
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  letter-spacing: var(--tracking-display);
  line-height: var(--lh-tight);
  color: var(--text-strong);
  text-transform: uppercase;
}
.gt-overline {
  font-family: var(--font-sans);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-overline);
  letter-spacing: var(--tracking-overline);
  text-transform: uppercase;
  color: var(--text-accent);
}

/* Links */
a { color: var(--amber-700); text-decoration: none; transition: color var(--dur-fast) var(--ease-standard); }
a:hover { color: var(--amber-600); text-decoration: underline; text-underline-offset: 2px; }

/* Diagonal stripe backdrop derived from the symbol's structural profile */
.gt-stripes {
  background-image: repeating-linear-gradient(
    116deg,
    transparent 0, transparent 22px,
    rgba(244,157,18,0.10) 22px, rgba(244,157,18,0.10) 24px
  );
}
.gt-hatch-graphite {
  background-image: repeating-linear-gradient(
    116deg,
    transparent 0, transparent 22px,
    rgba(255,255,255,0.05) 22px, rgba(255,255,255,0.05) 24px
  );
}

::selection { background: var(--amber); color: var(--graphite-dark); }
