/* ============================================================
   Gyan Varsha — Base element styling & utility primitives
   Lightweight, opt-in. Tokens do the heavy lifting.
   ============================================================ */

.gv-display {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: var(--fs-display);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-tight);
  color: var(--text-heading);
}
.gv-h1 { font-family: var(--font-display); font-weight: var(--fw-bold); font-size: var(--fs-h1); line-height: var(--lh-h1); letter-spacing: var(--ls-tight); color: var(--text-heading); }
.gv-h2 { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: var(--fs-h2); line-height: var(--lh-h2); color: var(--text-heading); }
.gv-h3 { font-family: var(--font-display); font-weight: var(--fw-semibold); font-size: var(--fs-h3); line-height: var(--lh-h3); color: var(--text-heading); }
.gv-h4 { font-family: var(--font-body); font-weight: var(--fw-bold); font-size: var(--fs-h4); line-height: var(--lh-h4); color: var(--text-heading); }

.gv-body    { font-family: var(--font-body); font-weight: var(--fw-regular); font-size: var(--fs-body); line-height: var(--lh-body); color: var(--text-body); }
.gv-body-lg { font-family: var(--font-body); font-weight: var(--fw-regular); font-size: var(--fs-body-lg); line-height: var(--lh-body); color: var(--text-body); }
.gv-caption { font-family: var(--font-body); font-weight: var(--fw-medium); font-size: var(--fs-caption); line-height: var(--lh-tight); color: var(--text-muted); }

/* Eyebrow — small uppercase label, echoes the crest banner */
.gv-eyebrow {
  font-family: var(--font-body);
  font-weight: var(--fw-bold);
  font-size: var(--fs-caption);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--color-accent-strong);
}

/* Sanskrit motto / Devanagari accent */
.gv-motto {
  font-family: var(--font-sanskrit);
  color: var(--color-brand-soft);
  letter-spacing: 0.02em;
}

/* Decorative serif pull-quote */
.gv-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: var(--fw-medium);
  font-size: var(--fs-h3);
  line-height: 1.4;
  color: var(--text-heading);
}

a.gv-link { color: var(--text-link); text-decoration-color: var(--blue-200); text-underline-offset: 3px; }
a.gv-link:hover { color: var(--navy-800); text-decoration-color: var(--blue-400); }
