/* =========================================================
   ORA & STONE — BASE / RESET / TYPOGRAPHY
   ========================================================= */

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol { margin: 0; padding: 0; list-style: none; }

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

/* ---- Focus states (always visible, never suppressed) ---- */
:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 3px;
}

/* ---- Headings ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 var(--space-sm);
  letter-spacing: -0.01em;
  color: var(--color-ink);
}

h1 { font-size: var(--text-h1); }
h2 { font-size: var(--text-h2); }
h3 { font-size: var(--text-h3); font-weight: 600; }

p { margin: 0 0 var(--space-sm); color: var(--color-ink-soft); }

/* ---- Utility label: eyebrows, filters, prices, badges ---- */
.label {
  font-family: var(--font-utility);
  font-size: var(--text-label);
  text-transform: uppercase;
  letter-spacing: var(--label-tracking);
  font-weight: 600;
  color: var(--color-ink-soft);
}

/* ---- Divider — a thin band of the signature gradient, not a plain hairline ---- */
.hr-gold {
  border: none;
  height: 2px;
  background: linear-gradient(90deg, var(--color-coral) 0%, var(--color-teal) 45%, var(--color-blue) 75%, var(--color-border) 100%);
  border-radius: 2px;
  width: 100%;
  margin: 0;
}

/* ---- Layout helpers ---- */
.container {
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.container-narrow {
  max-width: var(--content-narrow);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-ink);
  color: var(--color-bg);
  padding: var(--space-xs) var(--space-sm);
  z-index: 1000;
}
.skip-link:focus {
  left: var(--space-sm);
  top: var(--space-sm);
}
