/* Pure Haus — Blog Shared Styles */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  --p:  #4A7C6F;
  --pl: #6FA89D;
  --pd: #2D5147;
  --db: #0E1F1C;
  --lb: #F4F7F6;
  --ld: #DDE5E2;
  --gr: linear-gradient(135deg,#2D5147 0%,#4A7C6F 60%,#6FA89D 100%);
}
* { box-sizing: border-box; margin: 0; padding: 0; scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: #1A1A1A; background: #fff; line-height: 1.7; }
.serif { font-family: 'Playfair Display', serif; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 60px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ld);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--db);
}
.nav-logo-circle {
  width: 32px; height: 32px; border-radius: 50%; background: var(--p);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 12px; color: #fff; font-weight: 600;
  flex-shrink: 0;
}
.nav-logo-text { font-size: 13px; font-weight: 600; color: var(--db); letter-spacing: 0.5px; }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a {
  font-size: 13px; color: #555; text-decoration: none;
  font-weight: 500; transition: color .2s;
}
.nav-links a:hover { color: var(--p); }
.nav-cta {
  padding: 8px 18px; background: var(--p); color: #fff;
  border-radius: 22px; font-size: 13px; font-weight: 600;
  text-decoration: none; transition: background .2s; white-space: nowrap;
}
.nav-cta:hover { background: var(--pd); }

/* ── ARTICLE HEADER ── */
.article-header {
  margin-top: 60px;
  background: var(--lb);
  padding: 56px 0 48px;
  border-bottom: 1px solid var(--ld);
}
.container { max-width: 720px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1080px; margin: 0 auto; padding: 0 24px; }

.category-tag {
  display: inline-block;
  font-size: 11px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--p);
  background: white; border: 1px solid var(--ld);
  padding: 4px 12px; border-radius: 20px;
  margin-bottom: 20px;
}
.article-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4.5vw, 40px);
  line-height: 1.2; color: var(--db);
  margin-bottom: 16px;
}
.article-subtitle {
  font-size: 18px; color: #555; line-height: 1.5;
  margin-bottom: 24px; max-width: 600px;
}
.article-meta {
  display: flex; gap: 16px; font-size: 13px; color: #888;
  align-items: center;
}
.article-meta span { display: flex; align-items: center; gap: 4px; }

/* ── ARTICLE BODY ── */
.article-body { padding: 48px 24px 80px; }

.article-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; color: var(--db);
  margin: 44px 0 16px; line-height: 1.25;
}
.article-body h3 {
  font-size: 18px; font-weight: 600; color: var(--db);
  margin: 28px 0 12px;
}
.article-body p {
  margin-bottom: 20px; color: #333;
  font-size: 16px; line-height: 1.85;
}
.article-body ul, .article-body ol {
  margin: 0 0 20px 24px;
}
.article-body li {
  margin-bottom: 10px; color: #333;
  font-size: 16px; line-height: 1.7;
}
.article-body strong { color: var(--db); font-weight: 600; }
.article-body a { color: var(--p); text-decoration: underline; }
.article-body a:hover { color: var(--pd); }

.highlight-box {
  background: var(--lb);
  border-left: 3px solid var(--p);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin: 24px 0;
}
.highlight-box p { margin: 0; color: var(--db); font-size: 15px; }

.stat-box {
  background: var(--gr);
  color: white;
  border-radius: 12px;
  padding: 24px 28px;
  margin: 28px 0;
}
.stat-box .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 40px; font-weight: 600; color: white;
  line-height: 1; margin-bottom: 8px;
}
.stat-box p { color: rgba(255,255,255,0.85); margin: 0; font-size: 15px; }

/* ── ARTICLE CTA ── */
.article-cta {
  background: var(--gr);
  color: white; border-radius: 16px;
  padding: 40px; text-align: center;
  margin-top: 52px;
}
.article-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px; margin-bottom: 12px; color: white;
  font-weight: 600;
}
.article-cta p { color: rgba(255,255,255,0.85); margin-bottom: 24px; font-size: 16px; }
.btn-white {
  display: inline-block;
  background: white; color: var(--pd);
  padding: 13px 30px; border-radius: 28px;
  font-weight: 600; font-size: 15px;
  text-decoration: none; transition: transform .2s, box-shadow .2s;
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }

/* ── RELATED POSTS ── */
.related-section { padding: 48px 0 64px; background: var(--lb); }
.related-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 22px; color: var(--db); margin-bottom: 28px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.blog-card {
  background: white; border: 1px solid var(--ld);
  border-radius: 12px; padding: 24px;
  text-decoration: none; color: inherit;
  transition: transform .2s, box-shadow .2s;
  display: block;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.blog-card-tag {
  font-size: 10px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--p); margin-bottom: 10px;
}
.blog-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 17px; color: var(--db); margin-bottom: 10px; line-height: 1.3;
}
.blog-card p { font-size: 13px; color: #666; line-height: 1.6; margin: 0; }
.blog-card-meta {
  font-size: 12px; color: #aaa; margin-top: 14px;
  padding-top: 14px; border-top: 1px solid var(--ld);
}

/* ── BLOG LISTING PAGE ── */
.blog-hero {
  margin-top: 60px;
  background: var(--gr);
  padding: 72px 0 60px;
  text-align: center;
}
.blog-hero .category-tag { background: rgba(255,255,255,0.15); color: white; border-color: rgba(255,255,255,0.3); }
.blog-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 44px);
  color: white; line-height: 1.2; margin-bottom: 16px;
}
.blog-hero p { color: rgba(255,255,255,0.8); font-size: 17px; max-width: 480px; margin: 0 auto; }

.blog-grid-section { padding: 64px 0 80px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.blog-card-large {
  background: var(--lb); border: 1px solid var(--ld);
  border-radius: 14px; padding: 32px;
  text-decoration: none; color: inherit;
  transition: transform .2s, box-shadow .2s;
  display: block;
}
.blog-card-large:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(0,0,0,0.09); }
.blog-card-large .blog-card-tag { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--p); margin-bottom: 14px; }
.blog-card-large h2 {
  font-family: 'Playfair Display', serif;
  font-size: 21px; color: var(--db);
  margin-bottom: 12px; line-height: 1.3;
}
.blog-card-large p { font-size: 14px; color: #555; line-height: 1.65; margin: 0; }
.blog-card-large .blog-card-meta {
  font-size: 12px; color: #999; margin-top: 18px;
  padding-top: 16px; border-top: 1px solid var(--ld);
  display: flex; gap: 14px;
}
.read-more {
  display: inline-block; margin-top: 16px;
  font-size: 13px; font-weight: 600; color: var(--p);
  text-decoration: none;
}
.read-more:hover { color: var(--pd); }

/* ── FOOTER ── */
footer {
  background: var(--db);
  padding: 36px 24px;
  text-align: center;
}
footer p { color: rgba(255,255,255,0.5); font-size: 13px; margin-bottom: 8px; }
footer a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 13px; margin: 0 12px; }
footer a:hover { color: white; }
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 18px; color: white; margin-bottom: 12px;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  .article-header { padding: 40px 0 36px; }
  .article-body { padding: 32px 20px 56px; }
  .article-cta { padding: 30px 20px; }
  .article-cta h3 { font-size: 22px; }
  nav .nav-links { display: none; }
}