/* ===========================================================================
   Lieben Ladies — Base element styles & small utilities.
   Optional for consumers, but gives sensible brand defaults.
   =========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

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

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 0.5em;
  color: var(--text-strong);
  line-height: var(--leading-tight);
  font-weight: var(--weight-bold);
  text-wrap: balance;
}

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

a { color: var(--text-accent); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 0.18em; }

/* --- Display headings: elegant serif --- */
.ll-display {
  font-family: var(--display-font);
  font-weight: var(--weight-semibold);
  color: var(--rouge-deep);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
}

/* --- Eyebrow / spaced caps label --- */
.ll-eyebrow {
  font-family: var(--eyebrow-font);
  font-size: var(--text-xs);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--accent-strong);
}

/* --- Script accent --- */
.ll-script {
  font-family: var(--accent-font);
  font-weight: var(--weight-regular);
  color: var(--gold-deep);
  line-height: 1;
}

/* --- Decorative gold hairline with centred crown dot --- */
.ll-rule {
  height: 1px;
  border: 0;
  background: var(--hairline-gold);
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
