/* ============================================================
   LYCEUM MUNDI — Brand Style Sheet (design tokens + helpers)
   International · Humanities · Honors   ·   Est. MMXXVI
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=EB+Garamond:ital,wght@0,400;0,500;1,400&family=Inter:wght@400;500;600&display=swap');

:root {
  /* ---- Color palette ---- */
  --lm-navy:        #1B2A4A;   /* primary */
  --lm-navy-700:    #24365C;
  --lm-navy-900:    #0F1A30;   /* deep backgrounds */
  --lm-gold:        #C2A14D;   /* accent */
  --lm-gold-light:  #D9BE73;
  --lm-gold-dark:   #9A7E33;
  --lm-ivory:       #FAF6EC;   /* warm page background */
  --lm-paper:       #FFFFFF;
  --lm-ink:         #1E2330;   /* body text */
  --lm-stone:       #6B6E76;   /* muted text */
  --lm-line:        #E4DCC8;   /* hairline / borders */

  /* ---- Typography ---- */
  --lm-font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --lm-font-body:    'EB Garamond', Georgia, serif;
  --lm-font-ui:      'Inter', system-ui, -apple-system, Segoe UI, sans-serif;

  --lm-h1: 3.25rem;
  --lm-h2: 2.25rem;
  --lm-h3: 1.5rem;
  --lm-body: 1.0625rem;
  --lm-small: 0.875rem;

  /* ---- Space / radius / shadow ---- */
  --lm-space: 1rem;
  --lm-radius: 10px;
  --lm-shadow: 0 10px 30px rgba(15,26,48,.12);
}

/* ---- Base ---- */
body.lm {
  margin: 0;
  background: var(--lm-ivory);
  color: var(--lm-ink);
  font-family: var(--lm-font-body);
  font-size: var(--lm-body);
  line-height: 1.6;
}
.lm h1, .lm h2, .lm h3, .lm .display {
  font-family: var(--lm-font-display);
  color: var(--lm-navy);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: .01em;
}
.lm h1 { font-size: var(--lm-h1); }
.lm h2 { font-size: var(--lm-h2); }
.lm h3 { font-size: var(--lm-h3); }

/* ---- Helpers ---- */
.lm-eyebrow {
  font-family: var(--lm-font-ui);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .72rem;
  font-weight: 600;
  color: var(--lm-gold-dark);
}
.lm-rule {            /* gold divider */
  border: 0; height: 2px; background: var(--lm-gold);
  width: 80px; margin: 1.25rem 0;
}
.lm-rule.center { margin-left: auto; margin-right: auto; }
.lm-motto { font-style: italic; color: var(--lm-stone); }

.lm-btn {
  display: inline-block;
  font-family: var(--lm-font-ui); font-weight: 600; font-size: .95rem;
  background: var(--lm-navy); color: #fff; text-decoration: none;
  padding: .7rem 1.4rem; border-radius: var(--lm-radius);
  border: 1px solid var(--lm-navy);
}
.lm-btn:hover { background: var(--lm-navy-700); }
.lm-btn.gold { background: var(--lm-gold); border-color: var(--lm-gold); color: var(--lm-navy-900); }
.lm-btn.ghost { background: transparent; color: var(--lm-navy); }

.lm-card {
  background: var(--lm-paper);
  border: 1px solid var(--lm-line);
  border-top: 3px solid var(--lm-gold);
  border-radius: var(--lm-radius);
  box-shadow: var(--lm-shadow);
  padding: 1.5rem;
}

/* Decorative double border (used on diplomas/certificates) */
.lm-frame {
  border: 3px solid var(--lm-navy);
  outline: 1px solid var(--lm-gold);
  outline-offset: 6px;
}
