/* ───────────────────────────────────────────────
   HOH Blog styles — palette + nav (matched to site) + article layout
   Used by blog.html, blog post pages, and blog-post-template.html
   ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root{
  --sand:#EFEBF5; --sand-mid:#D8D1EA; --sand-dark:#9D93BE;
  --deep:#3E3166; --deep-mid:#534178; --terra:#BA7363; --terra-light:#ECD8D1;
  --sky:#7FB3A4; --sky-light:#E0EDEA; --sky-dark:#2D6651;
  --white:#FFFDFB; --mid:#6B6480; --wine:#8E5446; --cream:#F3ECE3;
}
html{ scroll-behavior:smooth; }
body{ font-family:'Outfit',sans-serif; background:var(--sand); color:var(--deep); overflow-x:hidden; }
.serif{ font-family:'Playfair Display','DM Serif Display',serif; }

/* ─── NAV (matched to site) ─── */
nav{ position:sticky; top:0; z-index:100; background:rgba(239,235,245,0.92); backdrop-filter:blur(14px); border-bottom:1.5px solid var(--sand-mid); padding:0 5%; }
.nav-inner{ max-width:1200px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; height:68px; }
.logo{ text-decoration:none; display:flex; align-items:center; gap:11px; }
.logo-mark{ width:42px; height:auto; }
.logo-label{ font-size:0.6875rem; font-weight:800; letter-spacing:0.18em; text-transform:uppercase; color:var(--sand-dark); display:block; line-height:1; }
.logo-name{ font-family:'Lumierepolis','DM Serif Display',serif; font-size:1.2rem; color:var(--deep); display:block; line-height:1.1; }
.logo-name span{ color:var(--terra); }
.nav-links{ display:flex; align-items:center; gap:28px; }
.nav-link{ font-size:0.8rem; font-weight:700; letter-spacing:0.08em; color:var(--mid); text-decoration:none; transition:color .2s; padding:8px 0; }
.nav-link:hover{ color:var(--terra); }
.nav-link.active{ color:var(--deep); border-bottom:2px solid var(--terra); }
.nav-cta{ background:var(--terra); color:var(--white); font-family:'Outfit',sans-serif; font-weight:700; font-size:0.82rem; padding:10px 22px; border-radius:50px; border:none; cursor:pointer; text-decoration:none; transition:background .2s, transform .15s; box-shadow:0 3px 14px rgba(186,115,99,.3); }
.nav-cta:hover{ background:var(--wine); transform:translateY(-1px); }
@media(max-width:760px){ .nav-links{ gap:14px; } .nav-link{ display:none; } .nav-cta{ padding:9px 16px; } }

/* ─── BLOG HERO ─── */
.blog-hero{ background:var(--deep); color:var(--white); padding:64px 7% 56px; position:relative; overflow:hidden; }
.blog-hero::after{ content:''; position:absolute; inset:0; pointer-events:none;
  background: radial-gradient(ellipse 700px 420px at 92% -10%, rgba(127,179,164,.20) 0%, transparent 62%),
              radial-gradient(ellipse 460px 340px at -5% 110%, rgba(186,115,99,.16) 0%, transparent 58%); }
.blog-hero .wrap{ max-width:1000px; margin:0 auto; position:relative; z-index:2; }
.blog-hero .eyebrow{ font-size:.72rem; font-weight:800; letter-spacing:.22em; text-transform:uppercase; color:var(--terra-light); }
.blog-hero h1{ font-family:'Playfair Display','DM Serif Display',serif; font-size:clamp(2.1rem,5vw,3.2rem); line-height:1.05; margin:10px 0 14px; }
.blog-hero p{ font-size:1.08rem; color:#E7E1F2; max-width:620px; line-height:1.55; }

/* ─── INDEX: post grid ─── */
.shell{ max-width:1000px; margin:0 auto; padding:48px 7% 72px; }
.feature{ display:grid; grid-template-columns:1.1fr .9fr; gap:0; background:var(--white); border:1px solid var(--sand-mid); border-radius:20px; overflow:hidden; box-shadow:0 14px 40px rgba(62,49,102,.08); margin-bottom:40px; }
.feature .ph{ background:linear-gradient(150deg,var(--deep),var(--deep-mid) 60%,var(--sky-dark)); min-height:230px; display:flex; align-items:center; justify-content:center; padding:30px; }
.feature .ph span{ font-family:'Playfair Display',serif; color:#fff; font-size:1.5rem; text-align:center; line-height:1.2; opacity:.95; }
.feature .meat{ padding:30px 32px; display:flex; flex-direction:column; justify-content:center; }
.tag{ display:inline-block; font-size:.66rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase; color:var(--sky-dark); background:var(--sky-light); border-radius:30px; padding:4px 12px; margin-bottom:12px; width:fit-content; }
.feature h2{ font-family:'Playfair Display',serif; font-size:1.7rem; line-height:1.12; color:var(--deep); margin-bottom:10px; }
.feature p{ color:var(--mid); font-size:.98rem; line-height:1.55; margin-bottom:18px; }
.readlink{ font-weight:700; color:var(--terra); text-decoration:none; font-size:.9rem; letter-spacing:.02em; }
.readlink:hover{ color:var(--wine); }
.section-label{ font-size:.72rem; font-weight:800; letter-spacing:.18em; text-transform:uppercase; color:var(--sand-dark); margin:8px 0 18px; }
.coming{ display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.coming .c{ background:var(--white); border:1px dashed var(--sand-mid); border-radius:16px; padding:20px; }
.coming .c .tag{ background:var(--terra-light); color:var(--wine); }
.coming .c h3{ font-family:'Playfair Display',serif; font-size:1.12rem; color:var(--deep); line-height:1.18; }
.coming .c .soon{ font-size:.74rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase; color:var(--sand-dark); margin-top:10px; }
@media(max-width:760px){ .feature{ grid-template-columns:1fr; } .coming{ grid-template-columns:1fr; } }

/* ─── ARTICLE ─── */
.article{ max-width:720px; margin:0 auto; padding:44px 7% 64px; }
.article .tag{ margin-bottom:16px; }
.article h1{ font-family:'Playfair Display','DM Serif Display',serif; font-size:clamp(2rem,4.4vw,2.7rem); line-height:1.08; color:var(--deep); margin-bottom:14px; }
.byline{ display:flex; align-items:center; gap:10px; color:var(--mid); font-size:.9rem; border-bottom:1px solid var(--sand-mid); padding-bottom:22px; margin-bottom:28px; }
.byline b{ color:var(--deep); }
.article .lead{ font-size:1.2rem; line-height:1.6; color:var(--deep-mid); margin-bottom:24px; }
.article h2{ font-family:'Playfair Display',serif; font-size:1.5rem; color:var(--deep); margin:34px 0 10px; }
.article h3{ font-size:1.05rem; color:var(--sky-dark); font-weight:700; margin:22px 0 6px; }
.article p{ font-size:1.04rem; line-height:1.72; color:#36304A; margin-bottom:16px; }
.article ul{ margin:0 0 16px 22px; } .article li{ font-size:1.04rem; line-height:1.6; color:#36304A; margin-bottom:8px; }
.article a{ color:var(--terra); font-weight:600; }
.article a:hover{ color:var(--wine); }
.pull{ font-family:'Playfair Display',serif; font-size:1.5rem; line-height:1.3; color:var(--deep); border-left:4px solid var(--terra); padding:6px 0 6px 20px; margin:26px 0; }
.cta-box{ background:linear-gradient(135deg,var(--sky-dark),#26544a); color:#fff; border-radius:18px; padding:28px 30px; margin:34px 0; }
.cta-box h3{ font-family:'Playfair Display',serif; color:#fff; font-size:1.4rem; margin-bottom:8px; }
.cta-box p{ color:#d8ece5; margin-bottom:16px; font-size:1rem; line-height:1.55; }
.cta-box .btn{ display:inline-block; background:#fff; color:var(--sky-dark); font-weight:700; text-decoration:none; padding:13px 26px; border-radius:50px; font-size:.95rem; }
.cta-box .btn:hover{ background:var(--terra-light); }
.author-box{ display:flex; gap:16px; align-items:flex-start; background:var(--white); border:1px solid var(--sand-mid); border-radius:16px; padding:22px 24px; margin-top:30px; }
.author-box .av{ flex:0 0 54px; width:54px; height:54px; border-radius:50%; background:var(--deep); color:#fff; font-family:'Playfair Display',serif; font-size:1.3rem; display:flex; align-items:center; justify-content:center; }
.author-box h4{ font-size:1rem; color:var(--deep); margin-bottom:4px; }
.author-box p{ font-size:.88rem; color:var(--mid); line-height:1.5; }
.editor-note{ background:var(--cream); border:1px dashed var(--terra); border-radius:12px; padding:16px 18px; margin:0 auto 24px; max-width:720px; font-size:.92rem; color:var(--wine); }
