/* ============================================================
   Bellevue Zuhause Plus — Base element defaults & helpers
   ============================================================ */

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

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

/* Brand display lockup — the Cinzel all-caps treatment */
.bv-display {
  font-family: var(--font-display);
  font-weight: var(--fw-display);
  letter-spacing: var(--tracking-display);
  color: var(--brand-primary);
  line-height: var(--leading-tight);
  text-transform: uppercase;
}

/* Editorial serif heading */
.bv-heading {
  font-family: var(--font-serif);
  font-weight: var(--fw-medium);
  color: var(--text-strong);
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-tight);
}

/* Eyebrow / overline */
.bv-eyebrow {
  font-family: var(--role-eyebrow-font);
  font-size: var(--role-eyebrow-size);
  font-weight: var(--role-eyebrow-weight);
  letter-spacing: var(--role-eyebrow-track);
  text-transform: uppercase;
  color: var(--text-accent);
}

/* The signature gold rule, e.g. between eyebrow flourishes */
.bv-rule {
  height: 2px;
  background: var(--rule-gold);
  border: 0;
  width: 56px;
}

a { color: var(--text-link); text-underline-offset: 2px; }

::selection { background: color-mix(in srgb, var(--gold-500) 35%, transparent); }

:focus-visible {
  outline: none;
  box-shadow: var(--shadow-focus);
  border-radius: var(--radius-sm);
}
