/* ==========================================================================
   KAC v2 — DESIGN TOKENS ("Cloister")
   Source of truth. Every page reads from this file.
   ========================================================================== */

:root {
  /* -- Colour --------------------------------------------------------------- */
  --paper:        #F4EFE7;
  --paper-2:      #EBE4D6;
  --paper-3:      #DDD4C0;
  --ink:          #1F1A14;
  --ink-soft:     #3A332A;
  --stone:        #5E5B47;
  --mist:         #A8A395;
  --hairline:     rgba(31, 26, 20, 0.10);
  --hairline-2:   rgba(31, 26, 20, 0.18);
  --brass:        #A47148;
  --brass-ink:    #7A5230;
  --brass-soft:   #C8A47A;
  --terracotta:   #B8704E;
  --cloister:     #2A2A22;
  --cloister-ink: #F4EFE7;

  /* -- Brand red (from the KAC crest) -------------------------------------- */
  --kac-red:        #B63839;
  --kac-red-deep:   #8E2A2B;   /* hover / pressed */
  --kac-red-soft:   #D86264;   /* highlight */
  --kac-red-tint:   rgba(182, 56, 57, 0.08);  /* wash for backgrounds */

  /* -- Type ----------------------------------------------------------------- */
  --font-display: "Gotham", "Montserrat", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-serif:   "Cormorant Garamond", "Cormorant", Georgia, serif; /* reserved for scripture/pull-quotes if needed */
  --font-body:    "Inter", "Söhne", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono:    "JetBrains Mono", "Söhne Mono", ui-monospace, SFMono-Regular, monospace;

  /* Type scale — generous, paper-feeling */
  --t-meta:       11px;   /* eyebrow caps, scripture refs */
  --t-body:       17px;   /* body, default */
  --t-body-sm:    15px;   /* secondary body */
  --t-lead:       21px;   /* lead paragraph after H1 */
  --t-h4:         24px;
  --t-h3:         34px;
  --t-h2:         48px;
  --t-h1:         72px;
  --t-display:    96px;   /* hero only */

  /* -- Spacing -------------------------------------------------------------- */
  --col:          1200px;
  --col-narrow:   720px;
  --col-prose:    560px;  /* tight prose column for Beliefs etc */
  --gutter:       32px;
  --rhythm:       96px;   /* section spacing */
  --breath:       160px;  /* hero / reverence spacing */
  --line:         1.65;   /* body line-height */
  --line-tight:   1.15;   /* display line-height */

  /* -- Motion --------------------------------------------------------------- */
  --t-fast:       180ms;
  --t-med:        320ms;
  --t-slow:       600ms;
  --ease:         cubic-bezier(0.4, 0.0, 0.2, 1);
  --ease-out:     cubic-bezier(0.0, 0.0, 0.2, 1);
}

@media (max-width: 900px) {
  :root {
    --t-body:    16px;
    --t-h4:      20px;
    --t-h3:      28px;
    --t-h2:      36px;
    --t-h1:      48px;
    --t-display: 56px;
    --gutter:    24px;
    --rhythm:    64px;
    --breath:    96px;
  }
}
