/* ============================================================
   Realty ONE Group West — Base element styles & helpers
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

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

/* Headings — h1/h2 in the Playfair display serif (marquee, high-contrast),
   h3–h6 in clean Montserrat for crisp structural labels. */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  line-height: var(--leading-tight);
  letter-spacing: var(--tracking-tight);
  margin: 0 0 0.5em;
}
h1, h2 { font-family: var(--font-display); font-weight: var(--fw-bold); }
h3, h4, h5, h6 { font-family: var(--font-sans); font-weight: var(--fw-extra); }
h1 { font-size: var(--text-3xl); }
h2 { font-size: var(--text-2xl); }
h3 { font-size: var(--text-xl); }
h4 { font-size: var(--text-lg); }

p { margin: 0 0 1em; text-wrap: pretty; }
a { color: var(--text-link); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ---- Brand utility classes ---- */

/* Eyebrow / kicker — wide tracked caps, the ROG signature label */
.rog-eyebrow {
  font-family: var(--font-sans);
  font-weight: var(--fw-bold);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--brand-deep);
}

/* Editorial display — Playfair Display serif for marquee words & big numerals */
.rog-display {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  letter-spacing: var(--tracking-tight);
  line-height: 0.98;
}

/* Italic accent — Playfair Display italic (sign-offs, flourish phrases) */
.rog-script {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 500;
  color: var(--brand);
  line-height: 1.3;
}

/* The brand habit of styling "ONE" gold inside black wordmarks */
.rog-one { color: var(--brand); }

/* Gold underline accent */
.rog-rule {
  width: 56px;
  height: 3px;
  background: var(--brand);
  border: 0;
  margin: var(--space-4) 0;
}

::selection { background: var(--rog-gold-tint); color: var(--rog-black); }
