:root{
  --blush: #fdeef6;
  --rose: #ff6fb5;
  --rose-dark: #ec008c;
  --ink: #171417;
  --ink-soft: #6a6468;
  --cream: #ffffff;
  --line: #ece7ea;
  --radius: 18px;
}
*{box-sizing:border-box;margin:0;padding:0;}
body{
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a{color:inherit; text-decoration:none;}

/* NAV (shared with main site) */
header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,250,248,0.92);
  backdrop-filter: blur(8px);
  border-bottom:1px solid var(--line);
}
nav{display:flex; align-items:center; justify-content:space-between; padding:18px 24px; max-width:1140px; margin:0 auto;}
.logo{
  font-size:22px; font-weight:300; letter-spacing:5px; color:var(--ink);
  text-transform:uppercase; display:flex; align-items:baseline;
}
.logo .g{color:var(--rose-dark); font-weight:600; font-size:1.2em; letter-spacing:0;}
.logo-img{height:26px; display:block;}
.navlinks{display:flex; gap:32px; font-size:14px; letter-spacing:0.5px; text-transform:uppercase; color:var(--ink-soft);}
.navlinks a:hover{color:var(--rose-dark);}
.navcta{
  background:var(--rose-dark); color:#fff; padding:10px 22px; border-radius:30px;
  font-size:13px; letter-spacing:0.5px; text-transform:uppercase; font-weight:600;
  transition:background .2s;
}
.navcta:hover{background:var(--ink);}

/* BLOG HERO */
.blog-hero{
  background: linear-gradient(135deg, var(--blush) 0%, #fdf5f3 60%, var(--cream) 100%);
  padding:70px 24px 60px; text-align:center;
}
.eyebrow{
  text-transform:uppercase; letter-spacing:3px; font-size:12px; color:var(--rose-dark); font-weight:700; margin-bottom:14px;
  display:flex; justify-content:center;
}
.blog-hero h1{font-size:40px; line-height:1.15; font-weight:700; margin-bottom:16px; letter-spacing:-0.5px;}
.blog-hero p{font-size:16px; color:var(--ink-soft); max-width:560px; margin:0 auto;}

/* BLOG GRID */
.wrap{max-width:1140px; margin:0 auto; padding:0 24px;}
.blog-section{padding:60px 24px 90px;}
.category-label{
  font-size:13px; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--rose-dark);
  margin:44px 0 20px;
}
.category-label:first-child{margin-top:0;}
.article-grid{
  display:grid; grid-template-columns:repeat(3, 1fr); gap:24px;
}
.article-card{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  padding:26px; display:flex; flex-direction:column; transition: transform .2s, box-shadow .2s;
}
.article-card:hover{transform:translateY(-4px); box-shadow:0 20px 36px -20px rgba(23,20,23,0.18);}
.article-card h3{font-size:16px; font-weight:700; margin-bottom:10px; line-height:1.4;}
.article-card p{font-size:13.5px; color:var(--ink-soft); flex:1; margin-bottom:16px;}
.article-card .read-link{font-size:13px; font-weight:600; color:var(--rose-dark);}

/* ARTICLE PAGE */
.breadcrumb{font-size:13px; color:var(--ink-soft); padding:24px 24px 0; max-width:760px; margin:0 auto;}
.breadcrumb a{color:var(--rose-dark);}
article.post{max-width:760px; margin:0 auto; padding:24px 24px 80px;}
.post-category{
  font-size:12px; font-weight:700; letter-spacing:1px; text-transform:uppercase; color:var(--rose-dark); margin:20px 0 12px;
}
.post h1{font-size:36px; line-height:1.2; font-weight:700; margin-bottom:18px; letter-spacing:-0.5px;}
.post .lede{font-size:18px; color:var(--ink-soft); margin-bottom:32px;}
.post h2{font-size:23px; font-weight:700; margin:36px 0 14px;}
.post p{font-size:16px; color:#2a2528; margin-bottom:16px;}
.post ul{margin:0 0 16px 22px;}
.post li{font-size:16px; color:#2a2528; margin-bottom:8px;}
.post-cta{
  background: linear-gradient(135deg, var(--rose-dark), #7a0060);
  color:#fff; text-align:center; padding:48px 32px; border-radius:24px; margin-top:48px;
}
.post-cta h3{font-size:22px; margin-bottom:10px; font-weight:700;}
.post-cta p{color:rgba(255,255,255,0.9); margin-bottom:22px; font-size:15px;}
.btn-primary{
  background:#fff; color:var(--rose-dark); padding:14px 28px; border-radius:30px; font-weight:600; font-size:14px;
  letter-spacing:0.5px; text-transform:uppercase; display:inline-block; transition: transform .2s, background .2s;
}
.btn-primary:hover{background:var(--ink); color:#fff; transform:translateY(-2px);}
.back-link{display:inline-block; margin-top:36px; font-size:14px; font-weight:600; color:var(--rose-dark);}

footer{background:var(--ink); color:#b8b2b6; padding:50px 24px 30px;}
.footer-inner{max-width:1140px; margin:0 auto; display:flex; justify-content:space-between; flex-wrap:wrap; gap:24px; padding-bottom:30px; border-bottom:1px solid rgba(255,255,255,0.12);}
.footer-inner .logo{color:#fff;}
.footer-links{display:flex; gap:28px; font-size:13px;}
.footer-links a:hover{color:#fff;}
.footer-bottom{max-width:1140px; margin:24px auto 0; font-size:12px; color:#8a8488;}

@media (max-width: 860px){
  .article-grid{grid-template-columns:1fr;}
  .blog-hero h1, .post h1{font-size:28px;}
  nav{flex-wrap:wrap; gap:14px;}
  .navlinks{order:3; width:100%; justify-content:center; gap:20px;}
}
