
/* Reset */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img, picture, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
input, select, textarea { font: inherit; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

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

/* Skip link */
.skip-nav {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--ink);
  color: var(--cream);
  padding: 0.75rem 1.25rem;
  z-index: 9999;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.skip-nav:focus { top: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus rings */
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Typography utilities */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-text);
  margin: 0 0 1.25rem;
}
.eyebrow--ink { color: var(--ink-soft); }

.display {
  font-family: var(--font-display);
  font-weight: 300;
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin: 0 0 1.5rem;
  color: var(--ink);
}
.display--xl { font-size: clamp(2.75rem, 6.5vw, 5.5rem); font-weight: 300; }
.display--l  { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 300; }
.display--m  { font-size: clamp(1.75rem, 3.25vw, 2.75rem); font-weight: 400; }

/* Italic accent within display headlines (kept neutral; pages opt-in to gold) */
.display em {
  font-family: var(--font-serif);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  color: inherit;
}

/* Letter-spaced uppercase variant for small section titles (e.g., shop section heads) */
.spaced {
  letter-spacing: 0.12em;
  text-transform: none;
}

.lead {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 1.5vw, 1.4rem);
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0 auto 2rem;
}
.lead--legible {
  color: var(--ink);
  font-weight: 450;
}

