/* ==========================================================================
   ChristianNarcissist.com — Brand Kit Stylesheet
   Version: 1.0 — April 17, 2026
   Owner: Advocate Marketing LLC

   This file is the single source of truth for typography, spacing,
   colors, and component styling.
   ========================================================================== */

/* ------ 1. COLOR & VARIABLE TOKENS ------ */
:root {
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --cream: #f7f5f0;
  --ink: #1a1a1a;
  --ink-muted: #5a5a5a;
  --silver: #b8b8b8;
  --silver-lt: #d4d0c4;
  --gold: #a88838;
  --gold-dark: #8a6e28;
  --gold-hover: #c9a84c;
  --red: #d64a2a;
  --footer-bg: #e8e4dc;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;
  --border-soft: rgba(26, 26, 26, 0.1);
}

body.ck-dark {
  --cream: #0a0a0a;
  --ink: #ffffff;
  --ink-muted: #b8b8b8;
  --gold: #c9a84c;
  --gold-dark: #a88838;
  --gold-hover: #d6b85a;
  --footer-bg: #0a0a0a;
  --border-soft: rgba(255, 255, 255, 0.1);
}

/* ------ 2. BASE RESET ------ */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

/* ------ 3. TYPOGRAPHY SCALE ------ */
.ck-display {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 var(--space-md);
  letter-spacing: -0.01em;
}
@media (min-width: 961px) { .ck-display { font-size: 4.5rem; } }

.ck-h1 {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 400;
  line-height: 1.15;
  color: var(--ink);
  margin: 0 0 var(--space-md);
}

.ck-h2 {
  font-family: var(--font-serif);
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin: 0 0 var(--space-md);
}

.ck-h3 {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ink);
  margin: 0 0 var(--space-sm);
}

.ck-lead {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
  margin: 0 0 var(--space-md);
}

.ck-body {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 var(--space-sm);
}

.ck-small {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink-muted);
}

.ck-eyebrow {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 var(--space-md);
  display: block;
  text-align: center;
}

.ck-attribution {
  font-family: var(--font-sans);
  font-size: 1.75rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

/* ------ 4. CONTAINERS ------ */
.ck-container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.ck-container-narrow { max-width: 800px; margin: 0 auto; padding: 0 1rem; }
.ck-container-prose { max-width: 640px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 641px) {
  .ck-container, .ck-container-narrow, .ck-container-prose { padding: 0 2rem; }
}

/* ------ 5. SECTIONS ------ */
.ck-section { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.ck-section--hero { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }

/* ------ 6. IMAGE / FIGURE SIZING ------ */
.ck-figure { margin: var(--space-lg) auto; padding: 0; }
.ck-figure img { display: block; width: 100%; height: auto; margin: 0 auto; }
.ck-img-full { max-width: 1200px; }
.ck-img-mid  { max-width: 800px; }
.ck-img-sm   { max-width: 500px; }

/* ------ 7. BUTTONS ------ */
.ck-btn-primary, .ck-btn-secondary {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  transition: all 0.2s ease;
  cursor: pointer;
  text-align: center;
}
.ck-btn-primary {
  background: var(--gold);
  color: var(--ink);
  border: 1.5px solid var(--gold);
}
.ck-btn-primary:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
}
.ck-btn-secondary {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.ck-btn-secondary:hover {
  background: var(--gold);
  color: var(--ink);
}

/* ------ 8. DIVIDERS ------ */
.ck-divider-sm {
  width: 60px;
  height: 1px;
  background: var(--gold);
  border: none;
  margin: 2.5rem auto;
}
.ck-divider-md {
  width: 120px;
  height: 1.5px;
  background: var(--gold);
  border: none;
  margin: 3rem auto;
}
.ck-divider-full {
  width: 100%;
  height: 1px;
  background: var(--silver-lt);
  border: none;
  margin: var(--space-lg) 0;
}

/* ------ 9. UTILITY ------ */
.ck-text-center { text-align: center; }
.ck-text-italic { font-style: italic; }
.ck-text-muted  { color: var(--ink-muted); }
.ck-mt-sm { margin-top: var(--space-sm); }
.ck-mt-md { margin-top: var(--space-md); }
.ck-mt-lg { margin-top: var(--space-lg); }
.ck-mb-sm { margin-bottom: var(--space-sm); }
.ck-mb-md { margin-bottom: var(--space-md); }
.ck-mb-lg { margin-bottom: var(--space-lg); }
