/* InnerType Blog — shared styles */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:      #09090E;
  --bg2:     #10101A;
  --text:    #F2EDE4;
  --text2:   #9E9898;
  --text3:   #6A6470;
  --gold:    #C9A96E;
  --gold-lt: #E0C080;
  --ivory:   #DDD3BE;
  --surf:    rgba(255,255,255,0.055);
  --bord:    rgba(255,255,255,0.09);
  --bord-s:  rgba(255,255,255,0.16);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ─────────────────────────────────────── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 48px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(9,9,14,0.96) 60%, transparent);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-logo {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 21px; color: var(--ivory); text-decoration: none;
  letter-spacing: -0.2px;
}
.nav-btn {
  padding: 9px 22px;
  background: var(--gold); color: #0A0A0F;
  font-size: 13px; font-weight: 600; letter-spacing: 0.2px;
  border-radius: 100px; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-flex; align-items: center;
}
.nav-btn:hover { background: var(--gold-lt); transform: translateY(-1px); }

/* ── Footer ──────────────────────────────────── */
footer {
  border-top: 1px solid var(--bord);
  padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.foot-logo {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 17px; color: var(--ivory); letter-spacing: -0.1px;
}
.foot-links { display: flex; gap: 28px; flex-wrap: wrap; }
.foot-links a { font-size: 13px; color: var(--text3); text-decoration: none; }
.foot-links a:hover { color: var(--text2); }
.foot-copy { font-size: 12px; color: var(--text3); }

/* ── Blog Index ──────────────────────────────── */
.blog-hero {
  padding: 140px 48px 64px;
  max-width: 900px; margin: 0 auto;
}
.blog-eyebrow {
  display: block;
  font-size: 10.5px; font-weight: 600; letter-spacing: 2.8px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.blog-hero h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 400; line-height: 1.08; letter-spacing: -1px;
  color: var(--text); margin-bottom: 16px;
}
.blog-hero h1 em { font-style: italic; color: var(--ivory); }
.blog-hero p {
  font-size: 16px; font-weight: 300; color: var(--text2); max-width: 500px;
}

.blog-grid {
  max-width: 900px; margin: 0 auto;
  padding: 0 48px 96px;
  display: flex; flex-direction: column; gap: 20px;
}

.blog-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--surf);
  border: 1px solid var(--bord);
  border-radius: 18px;
  padding: 36px 40px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.blog-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--bord-s);
  transform: translateY(-2px);
}
.card-meta {
  font-size: 11.5px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--text3); margin-bottom: 14px;
}
.blog-card h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 400; line-height: 1.18; color: var(--text);
  margin-bottom: 12px; letter-spacing: -0.3px;
}
.card-excerpt {
  font-size: 15px; font-weight: 300; line-height: 1.75;
  color: var(--text2); margin-bottom: 20px;
}
.card-read {
  font-size: 13px; font-weight: 500; color: var(--gold); letter-spacing: 0.3px;
}

/* ── Article ─────────────────────────────────── */
.article-wrap {
  max-width: 700px; margin: 0 auto;
  padding: 130px 48px 96px;
}

.article-breadcrumb {
  font-size: 13px; color: var(--text3);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 52px;
}
.article-breadcrumb a { color: var(--text3); text-decoration: none; }
.article-breadcrumb a:hover { color: var(--text2); }
.article-breadcrumb .sep { opacity: 0.45; }

.article-eyebrow {
  display: block;
  font-size: 10.5px; font-weight: 600; letter-spacing: 2.8px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.article-wrap > h1 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 400; line-height: 1.08; letter-spacing: -1px;
  color: var(--text); margin-bottom: 20px;
}
.article-lede {
  font-size: 18px; font-weight: 300; line-height: 1.8;
  color: var(--text2);
  padding-bottom: 40px;
  border-bottom: 1px solid var(--bord);
  margin-bottom: 36px;
}
.article-meta {
  font-size: 12px; color: var(--text3);
  margin-bottom: 52px;
  display: flex; gap: 20px; flex-wrap: wrap;
}

/* Article body text */
.article-body {
  font-size: 16.5px; font-weight: 300; line-height: 1.85; color: var(--text);
}
.article-body h2 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 400; line-height: 1.15; letter-spacing: -0.4px;
  color: var(--text); margin: 52px 0 18px;
}
.article-body p { margin-bottom: 24px; }
.article-body ul { padding-left: 22px; margin-bottom: 24px; }
.article-body li { margin-bottom: 10px; }
.article-body strong { font-weight: 500; color: var(--ivory); }
.article-body em { font-style: italic; color: var(--ivory); }

.article-callout {
  background: var(--surf);
  border: 1px solid var(--bord);
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  padding: 22px 26px;
  margin: 36px 0;
  font-size: 16px; font-style: italic; color: var(--ivory); line-height: 1.7;
}

/* ── Article CTA ─────────────────────────────── */
.article-cta {
  margin-top: 72px;
  background: var(--surf);
  border: 1px solid var(--bord);
  border-radius: 22px;
  padding: 48px 44px;
  text-align: center;
  position: relative; overflow: hidden;
}
.article-cta::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 60%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,169,110,0.4), transparent);
}
.article-cta h3 {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 28px; font-weight: 400; color: var(--text);
  margin-bottom: 12px; letter-spacing: -0.3px;
}
.article-cta p {
  font-size: 15px; font-weight: 300; color: var(--text2);
  margin-bottom: 28px; line-height: 1.65;
}
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 30px;
  background: var(--gold); color: #0A0A0F;
  font-size: 14px; font-weight: 600; letter-spacing: 0.2px;
  border-radius: 100px; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.btn-gold:hover { background: var(--gold-lt); transform: translateY(-1px); }
.cta-note { font-size: 12px; color: var(--text3); margin-top: 14px; }

/* ── Responsive ──────────────────────────────── */
@media (max-width: 640px) {
  .site-nav { padding: 16px 24px; }
  .blog-hero { padding: 110px 24px 48px; }
  .blog-grid { padding: 0 24px 72px; }
  .blog-card { padding: 28px 24px; }
  .article-wrap { padding: 110px 24px 72px; }
  footer { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
  .article-cta { padding: 36px 28px; }
  .article-cta h3 { font-size: 24px; }
}
