/* ============================================================
   CIPTA KRIYA ENGINEERING — BASE ELEMENT DEFAULTS
   Opt-in document defaults that apply the brand foundations.
   ============================================================ */

body {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--text-strong);
  line-height: var(--lh-snug);
  letter-spacing: var(--ls-tight);
  margin: 0;
}

h1 { font-weight: var(--fw-black); letter-spacing: var(--ls-tighter); }
h2, h3 { font-weight: var(--fw-bold); }

a { color: var(--text-link); text-decoration: none; }
a:hover { text-decoration: underline; }

/* Brand utility helpers (optional) */
.cke-eyebrow {
  font-family: var(--font-mono);
  font-weight: var(--fw-medium);
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--color-primary);
}

.cke-container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-x);
}

::selection {
  background: var(--cke-blue-200);
  color: var(--cke-navy-800);
}
