/* ===========================================================================
   Nó Ateliê — base element styles & helpers
   Imported after tokens. Sets the page ground, default type, link behaviour.
   =========================================================================== */

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--surface-page);
  color: var(--text-body);
  font: var(--font-body-role);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  margin: 0;
  color: var(--text-strong);
  font-family: var(--font-serif);
  font-weight: var(--weight-regular);
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-tight);
}

p { margin: 0; }

a {
  color: var(--text-accent);
  text-decoration: none;
  transition: opacity var(--duration-fast) var(--ease-standard);
}
a:hover { opacity: 0.7; }

/* Eyebrow / label utility — letterspaced uppercase, used throughout the brand */
.no-eyebrow {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  letter-spacing: var(--tracking-label);
  text-transform: uppercase;
  color: var(--text-muted);
}

::selection { background: var(--terracota-wash); color: var(--terracota-deep); }
