/* ============================================================
   Pillar Clinic — Base element styles & helpers
   Lightweight resets + a few semantic defaults.
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: var(--w-light);
  font-size: var(--fs-body);
  line-height: var(--lh-relaxed);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

p { margin: 0; }

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

/* ---- Reusable text helpers ----------------------------- */
.eyebrow {
  font-family: var(--font-sans);
  font-weight: var(--w-medium);
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--text-accent);
}

.serif-display {
  font-family: var(--font-display);
  font-weight: var(--w-medium);
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-tight);
}

/* ---- The signature champagne hairline + dot ------------ */
.gold-rule {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}
.gold-rule::before {
  content: "";
  width: 64px;
  height: 1px;
  background: var(--gold-500);
}
.gold-rule::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-500);
}

::selection { background: var(--gold-300); color: var(--ink-900); }
