/* ── DESIGN TOKENS ────────────────────────────────────────── */
:root {
  --white: #ffffff;
  --off: #f0ede6;
  --ink: #0d0d0d;
  --navy: #0f2544;
  --mid: #6b6b6b;
  --light: #e8e8e4;
  --accent: #0055e5;
  --red: #d42b2b;
  --amber: #c96800;
  --green: #15803d;
  --red-bg: #fef2f2;
  --amber-bg: #fffbeb;
  --green-bg: #f0fdf4;
}

/* ── RESET ────────────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Trebuchet MS', Verdana, Geneva, sans-serif;
  background: var(--white);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
}

/* ── HEADER ───────────────────────────────────────────────── */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 48px;
  border-bottom: 1px solid var(--light);
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-decoration: none;
  color: var(--ink);
}
.logo span { color: var(--accent); }

.hdr-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-right: 8px;
}

.nav-link {
  font-family: 'Trebuchet MS', Verdana, sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  color: var(--mid);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.15s;
}
.nav-link:hover { color: var(--ink); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  font-family: 'Trebuchet MS', Verdana, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--ink);
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 0;
  transition: background 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--accent); }

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  text-align: center;
  padding: 28px;
  border-top: 1px solid var(--light);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 13px;
  font-weight: 400;
  color: #767676;
  letter-spacing: 0.02em;
}
footer span { color: var(--accent); }

/* ── SHARE BLOCK ──────────────────────────────────────────── */
.share-block {
  margin: 48px 0 0;
  padding: 24px;
  background: var(--off);
  border: 1px solid var(--light);
}
.share-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 6px;
}
.share-desc {
  font-size: 13px;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.55;
}
.share-btns { display: flex; flex-wrap: wrap; gap: 8px; }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Trebuchet MS', Verdana, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 0;
  text-decoration: none;
  transition: opacity 0.2s;
  color: #ffffff;
  white-space: nowrap;
}
.share-btn:hover { opacity: 0.85; }
.share-fb  { background: #1877f2; }
.share-li  { background: #0a66c2; }
.share-x   { background: #000000; }
.share-wa  { background: #25d366; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 640px) {
  header { padding: 14px 20px; }
  .nav-links { display: none; }
  .share-btns { gap: 8px; }
  .share-btn { font-size: 11px; padding: 9px 12px; }
}

/* ── BLOG ARTICLE ─────────────────────────────────────────── */

/* Dark header band used on article pages */
.article-header {
  background: #0d0d0d;
  padding: 52px 40px 48px;
  border-bottom: 1px solid #222;
}
.article-header-inner {
  max-width: 680px;
  margin: 0 auto;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #555;
  text-decoration: none;
  margin-bottom: 22px;
  transition: color 0.15s;
}
.back-link:hover { color: #aaa; }

.article-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.article-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: #ffffff;
}
.article-meta {
  font-size: 12px;
  color: #555;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Article body */
.article-wrap {
  max-width: 680px;
  margin: 0 auto;
  padding: 52px 40px 80px;
}
.article-body p {
  font-size: 15px;
  line-height: 1.85;
  color: #333;
  margin-bottom: 20px;
}
.article-body h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin: 36px 0 12px;
  color: #0d0d0d;
}
.article-body ul {
  padding-left: 0;
  margin-bottom: 20px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article-body li {
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  display: flex;
  gap: 12px;
}
.article-body li::before {
  content: '—';
  color: #bbb;
  flex-shrink: 0;
  font-size: 13px;
  margin-top: 1px;
}

/* Callout / pull quote */
.callout {
  border-left: 3px solid var(--accent);
  padding: 16px 22px;
  margin: 28px 0;
  background: var(--off);
}
.callout p {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px !important;
  line-height: 1.65 !important;
  color: #0d0d0d !important;
  margin: 0 !important;
  font-style: italic;
}

/* Article CTA box */
.cta-box {
  background: #0d0d0d;
  color: #fff;
  padding: 36px 40px;
  margin: 48px 0 0;
  text-align: center;
}
.cta-box-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.cta-box h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.25;
  color: #fff;
}
.cta-box p {
  font-size: 13.5px;
  color: #888;
  margin-bottom: 24px;
  line-height: 1.65;
}
.cta-box a {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-family: 'Trebuchet MS', Verdana, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 12px 26px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.cta-box a:hover { opacity: 0.88; }

/* Article responsive */
@media (max-width: 640px) {
  .article-header { padding: 40px 20px 36px; }
  .article-wrap { padding: 40px 20px 60px; }
  .cta-box { padding: 28px 20px; }
}
