/* ── RESET & ROOT ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #F8F6F2;
  --surface:    #FFFFFF;
  --surface2:   #F2EFE9;
  --border:     #E4E0D8;
  --navy:       #1A2E4A;
  --navy-mid:   #2C4A6E;
  --navy-light: #EEF2F7;
  --gold:       #B8913A;
  --gold-bg:    #F5EDD8;
  --gold-border:#D4B870;
  --green:      #2D7A2D;
  --green-bg:   #EAF5EA;
  --green-border:#C0DCC0;
  --text:       #1A1A1A;
  --text-muted: #6B6560;
  --text-dim:   #A09890;
  --white:      #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── TYPOGRAPHY ──────────────────────────────── */
.section-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
  display: block;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 1.1rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 640px;
}

/* ── BUTTONS ─────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 0.9rem 2rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--navy-mid); transform: translateY(-1px); }

.btn-secondary {
  display: inline-block;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  padding: 0.9rem 2rem;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--navy); color: var(--navy); }

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 0.9rem 2rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.btn-gold:hover { background: #a07c2e; transform: translateY(-1px); }

/* ── NAV ─────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
  height: 70px;
  background: rgba(248,246,242,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.nav-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 0.83rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.3rem !important;
  border-radius: 2px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--navy-mid) !important; }

/* ── STATS BAR ───────────────────────────────── */
.stats-bar {
  background: var(--navy);
  padding: 3rem 6%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat-item {
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── QUOTE ───────────────────────────────────── */
.quote-block {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  color: var(--gold);
  line-height: 0.5;
  opacity: 0.5;
  display: block;
  margin-bottom: 1.2rem;
}
.quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.65;
  margin-bottom: 1.2rem;
}
.quote-author {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── FOOTER ──────────────────────────────────── */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 2.5rem 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
}
.footer-brand span { color: var(--gold); }
.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.footer-links a {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }

/* ── ARTICLE PAGES ───────────────────────────── */
.article-header {
  padding: 7rem 6% 3rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}
.article-header-inner { max-width: 760px; margin: 0 auto; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--navy); }

.article-cat-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-border);
  background: var(--gold-bg);
  padding: 0.25rem 0.75rem;
  border-radius: 2px;
  margin-bottom: 1.2rem;
}
.article-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1.2rem;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.article-meta .dot { color: var(--text-dim); }

.article-main { padding: 3.5rem 6%; }
.article-container { max-width: 760px; margin: 0 auto; }

.article-prose h2 {
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 2.8rem;
  margin-bottom: 1rem;
}
.article-prose h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 1.8rem;
  margin-bottom: 0.7rem;
}
.article-prose p { font-size: 1rem; line-height: 1.85; color: var(--text); margin-bottom: 1.3rem; }
.article-prose ul, .article-prose ol { padding-left: 1.5rem; margin-bottom: 1.3rem; }
.article-prose li { font-size: 1rem; line-height: 1.75; color: var(--text); margin-bottom: 0.4rem; }
.article-prose strong { color: var(--navy); font-weight: 600; }
.article-prose p:last-child { margin-bottom: 0; }

.article-highlight {
  background: var(--navy-light);
  border-left: 3px solid var(--navy);
  padding: 1.2rem 1.5rem;
  margin: 1.8rem 0;
  border-radius: 0 2px 2px 0;
}
.article-highlight p { margin: 0; font-size: 0.97rem; color: var(--navy); font-weight: 500; line-height: 1.7; }

.article-cta-box {
  background: var(--navy);
  padding: 2rem 2.5rem;
  border-radius: 4px;
  margin: 2.8rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.article-cta-box .cta-text p { color: rgba(255,255,255,0.75); font-size: 0.92rem; line-height: 1.6; margin: 0.3rem 0 0; }
.article-cta-box .cta-label {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
}

.article-faq { margin-top: 2.8rem; }
.faq-item { border-top: 1px solid var(--border); padding: 1.4rem 0; }
.faq-item:last-child { border-bottom: 1px solid var(--border); }
.faq-q { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.6rem; }
.faq-a { font-size: 0.95rem; color: var(--text-muted); line-height: 1.8; }

/* ── PODCAST SECTION ─────────────────────────── */
.podcast-section {
  background: var(--surface2);
  padding: 3rem 6%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.podcast-inner { max-width: 760px; margin: 0 auto; }
.podcast-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}
.podcast-heading {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.podcast-desc { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 1.4rem; line-height: 1.7; }
.podcast-iframe { border-radius: 4px; overflow: hidden; }

/* ── RELATED ARTICLES ────────────────────────── */
.related-section { padding: 3.5rem 6%; background: var(--bg); }
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 2rem auto 0;
}
.related-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 1.6rem;
  transition: border-color 0.2s, transform 0.15s;
}
.related-card:hover { border-color: var(--navy); transform: translateY(-2px); }
.related-cat { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; display: block; }
.related-title { font-size: 1.05rem; font-weight: 600; color: var(--navy); line-height: 1.35; margin-bottom: 1rem; }
.related-link { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--navy); }

/* ── WIEDZA INDEX ────────────────────────────── */
.wiedza-hero {
  padding: 8rem 6% 4.5rem;
  background: var(--navy);
  text-align: center;
}
.wiedza-hero-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.wiedza-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.wiedza-hero p { font-size: 1rem; color: rgba(255,255,255,0.62); max-width: 520px; margin: 0 auto; line-height: 1.8; }

.wiedza-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 6%;
}
.wiedza-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.15s;
}
.wiedza-card:hover { border-color: var(--navy); transform: translateY(-2px); }
.wiedza-card-cat { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.7rem; display: block; }
.wiedza-card-title { font-size: 1.12rem; font-weight: 600; color: var(--navy); line-height: 1.35; margin-bottom: 0.8rem; flex-grow: 1; }
.wiedza-card-excerpt { font-size: 0.87rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.3rem; }
.wiedza-card-footer { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.wiedza-card-time { font-size: 0.75rem; color: var(--text-dim); }
.wiedza-card-link { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: var(--navy); display: flex; align-items: center; gap: 0.3rem; transition: gap 0.2s; }
.wiedza-card:hover .wiedza-card-link { gap: 0.5rem; }

/* ── FOOTER CTA ──────────────────────────────── */
.section-cta {
  background: var(--navy);
  padding: 4rem 6%;
  text-align: center;
}
.section-cta h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--white); margin-bottom: 0.8rem; }
.section-cta p { color: rgba(255,255,255,0.62); font-size: 0.97rem; max-width: 520px; margin: 0 auto 2rem; line-height: 1.75; }

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1100px) {
  .wiedza-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.1); }
  .wiedza-grid { grid-template-columns: 1fr; }
  .related-grid { grid-template-columns: 1fr; }
  .article-cta-box { flex-direction: column; }
}
