/* ============================================
   PURAVANKARA — BASE STYLES
   Typography, body, scrollbar, global elements
   ============================================ */

body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-charcoal);
  background-color: var(--color-white);
  cursor: none; /* hidden — custom cursor active */
}

/* ── Custom Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--color-off-white); }
::-webkit-scrollbar-thumb { background: var(--color-gold-mid); border-radius: 2px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-gold); }

/* ── Skip to Content ── */
.skip-to-content {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--color-gold);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-btn);
  font-family: var(--font-label);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-to-content:focus { top: 1rem; }

/* ── Typography — Display ── */
h1, h2, h3, .font-display {
  font-family: var(--font-display);
  color: var(--color-ink);
  font-weight: 400;
  line-height: 1.15;
}

h1 { font-size: clamp(2.4rem, 5.5vw, 5.5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 3vw, 3rem); font-weight: 400; }
h3 { font-size: clamp(1.3rem, 1.8vw, 1.6rem); font-weight: 500; }

/* ── Section Heading with Gold Underline ── */
.section-heading {
  position: relative;
  display: inline-block;
  margin-bottom: 0.6rem;
}
.section-heading::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  margin: 0.6rem auto 0;
  transition: width 0.7s ease;
}
.section-heading.revealed::after { width: 40px; }

/* ── Body Text ── */
p { font-family: var(--font-body); line-height: 1.75; color: var(--color-charcoal); }
.text-stone { color: var(--color-stone); }
.text-gold  { color: var(--color-gold); }
.text-muted { color: var(--color-stone); font-size: 0.9rem; }

/* ── Labels ── */
.label {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
}

/* ── Gold Decorative Rule ── */
.gold-rule {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--color-gold-rule);
  margin: 1rem 0;
}
.gold-rule--center { margin: 1rem auto; }

/* ── Focus Ring ── */
:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: 2px;
}
