/* Nullify Group — Design System */
:root {
  /* Color Palette */
  --ivory:       #FDFAF5;
  --ivory-mid:   #F4F0E8;
  --slate:       #1E2535;
  --gold:        #C9A84C;
  --border:      #DDD6C8;
  --text-muted:  #7A7060;
  --text-faint:  #9A9080;
  --white:       #FFFFFF;

  /* Status Colors */
  --status-green-text: #3B6D11;
  --status-green-bg:   #EAF3DE;
  --status-amber-text: #854F0B;
  --status-amber-bg:   #FAEEDA;
  --status-red-text:   #A32D2D;
  --status-red-bg:     #FCEBEB;
  --status-blue-text:  #185FA5;
  --status-blue-bg:    #E6F1FB;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  --max-width:     1200px;
  --content-width: 680px;
}

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

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

body {
  background: var(--ivory);
  color: var(--slate);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Typography ── */
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--slate);
  margin-bottom: var(--space-lg);
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 400; }

p { color: var(--text-muted); line-height: 1.75; }

/* ── Card ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: var(--space-md);
}

/* ── Pill / Badge ── */
.pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.2em 0.75em;
  border-radius: 999px;
}

.pill-green  { background: var(--status-green-bg); color: var(--status-green-text); }
.pill-amber  { background: var(--status-amber-bg); color: var(--status-amber-text); }
.pill-red    { background: var(--status-red-bg);   color: var(--status-red-text);   }
.pill-blue   { background: var(--status-blue-bg);  color: var(--status-blue-text);  }

/* ── Button ── */
.btn-primary {
  display: inline-block;
  background: var(--slate);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-primary:hover { opacity: 0.85; }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--slate);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s;
}

.btn-secondary:hover { border-color: var(--gold); }

/* ── Gold Divider ── */
.gold-rule {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: var(--space-md) 0;
}

/* ── Header ── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--ivory-mid);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 var(--space-lg);
}

.wordmark {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav-note {
  font-size: 0.72rem;
  color: var(--text-faint);
  letter-spacing: 0.04em;
}

/* ── Footer ── */
.site-footer {
  background: var(--ivory-mid);
  border-top: 1px solid var(--border);
  padding: var(--space-xl) var(--space-lg);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-lg);
}

.footer-brand { display: flex; flex-direction: column; gap: 4px; }

.footer-wordmark {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--slate);
}

.footer-tagline {
  font-size: 0.75rem;
  color: var(--text-faint);
}

.footer-email {
  font-size: 0.8rem;
  color: var(--gold);
  text-decoration: none;
}

.footer-disclaimer {
  font-size: 0.72rem;
  color: var(--text-faint);
  max-width: 300px;
  line-height: 1.5;
  text-align: right;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }
  .footer-disclaimer { text-align: center; }
}