/* OLF Global Styles — Slate & Ember design system */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --slate-navy:   #1E2D40;
  --ember-gold:   #C9873A;
  --cream-white:  #F5F3EE;
  --cool-gray:    #6B7280;
  --sand-rule:    #E2DDD6;
  --ember-hover:  #b07730;
  --slate-light:  #2a3f58;
  --text-primary: #111827;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream-white);
  color: var(--text-primary);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); font-weight: 600; }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; font-family: 'Inter', system-ui, sans-serif; }

p { margin: 0 0 1rem; }

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.1s;
  border: none;
  text-decoration: none;
  min-height: 44px;
  min-width: 44px;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--ember-gold);
  color: #fff;
}
.btn-primary:hover {
  background: var(--ember-hover);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--ember-gold);
  border: 2px solid var(--ember-gold);
}
.btn-outline:hover {
  background: var(--ember-gold);
  color: #fff;
  text-decoration: none;
}

.btn-light {
  background: #fff;
  color: var(--slate-navy);
}
.btn-light:hover {
  background: var(--cream-white);
  color: var(--slate-navy);
  text-decoration: none;
  transform: translateY(-1px);
}

/* Divider */
hr.rule {
  border: none;
  border-top: 1px solid var(--sand-rule);
  margin: 2.5rem 0;
}

/* Section spacing */
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

/* Prose */
.prose { max-width: 720px; }
.prose p { font-size: 1.0625rem; color: #374151; }

/* Disclaimer / warning blocks */
.disclaimer {
  background: #fff8ed;
  border-left: 3px solid var(--ember-gold);
  padding: 14px 18px;
  border-radius: 0 4px 4px 0;
  font-size: 0.9rem;
  color: #78350f;
  margin: 1.5rem 0;
}

/* Trust bar chip */
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
}

/* Utility */
.text-gold { color: var(--ember-gold); }
.text-gray { color: var(--cool-gray); }
.text-navy { color: var(--slate-navy); }
.mono { font-family: 'JetBrains Mono', 'Courier New', monospace; }
