/* ============================================================
   Realty ONE Group — Base element styles & brand helpers
   ============================================================ */

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--heading-family);
  color: var(--text-heading);
  margin: 0 0 0.4em;
  line-height: var(--leading-snug);
  font-weight: var(--heading-weight);
}

p { margin: 0 0 1em; }
a { color: var(--text-accent); text-decoration: none; }
a:hover { color: var(--accent-strong); }

/* ---- Brand type helpers ---- */

/* Signature display: thin, wide, uppercase */
.rog-display {
  font-family: var(--display-family);
  font-weight: var(--fw-thin);
  letter-spacing: var(--tracking-wide);
  line-height: var(--leading-tight);
  color: var(--text-heading);
}

/* Eyebrow / kicker label */
.rog-eyebrow {
  font-family: var(--eyebrow-family);
  font-weight: var(--fw-bold);
  text-transform: uppercase;
  letter-spacing: var(--tracking-widest);
  font-size: var(--text-2xs);
  color: var(--text-accent);
}

/* Impact condensed caps (Bebas Neue) */
.rog-condensed {
  font-family: var(--font-condensed);
  text-transform: uppercase;
  letter-spacing: var(--tracking-wide);
  line-height: 0.95;
}

/* Brush-script accent (use sparingly, mimics the brand's handwritten overlays) */
.rog-script {
  font-family: var(--font-script);
  font-weight: var(--fw-medium);
  color: var(--text-accent);
}

/* Gold foil text fill */
.rog-gold-text {
  background: var(--gold-metallic);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Thin gold rule / divider */
.rog-rule-gold {
  border: 0;
  height: 1px;
  background: var(--gold-500);
  opacity: 0.85;
}
