/* ============================================================
   Photobooth Goa — Base / Reset
   Light, opt-in element defaults. Components are self-contained,
   but these make raw cards & specimens render on-brand.
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--lh-normal);
  color: var(--text-body);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--text-strong);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
  margin: 0;
}

p { margin: 0; text-wrap: pretty; }

a { color: var(--accent); text-decoration: none; }

/* Uppercase eyebrow utility used across the brand */
.eyebrow {
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: var(--text-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--accent);
}

::selection { background: var(--coral-100); color: var(--ink-900); }
