/* ==========================================================================
   SOGECAPRI · base.css — reset + tipografia global
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4, p { margin: 0; }
h1, h2, h3, h4 { letter-spacing: -0.02em; line-height: 1.14; text-wrap: balance; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

p { text-wrap: pretty; }

:focus-visible { outline: 2px solid var(--gold-bright); outline-offset: 3px; }

/* Selecção */
::selection { background: var(--gold-pale); color: var(--wine-dark); }
