/* Tokens */
:root {
  --c-wine:   #64232B;
  --c-copper: #C8824E;
  --c-ink:    #101012;
  --c-cream:  #FBF8F5;
  --c-wine-deep:   #4E1A21;
  --c-copper-deep: #B06E3E;

  --c-brand:      var(--c-wine);
  --c-brand-deep: var(--c-wine-deep);
  --c-on-copper:  var(--c-ink);

  --font-display: "Fraunces", "Georgia", "Times New Roman", serif;
  --font-sans:    "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --radius-pill: 999px;
  --ease-soft: cubic-bezier(.22, .61, .36, 1);
}

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

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

body {
  margin: 0;
  background-color: var(--c-cream);
  color: var(--c-ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, p { margin: 0; }

img, picture, svg { display: block; max-width: 100%; }

a { color: inherit; }

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
