/* ── Variables ─────────────────────────────────────────────────────────── */
:root {
  --p0: #ffffff;
  --p1: #faf9f7;
  --p2: #f5f3fb;
  --p3: #ece8f5;
  --p4: #c5bce6;
  --p5: #9b8ec4;
  --p6: #7b6fba;
  --ink:  #111111;
  --ink2: #444444;
  --b:    rgba(197,188,230,0.3);
  --serif:'Cormorant Garamond',Georgia,serif;
  --sans: 'DM Sans',system-ui,sans-serif;
  --max-width: 1100px;
  --content-width: 720px;
  --gutter: 2.5rem;
  --radius: 2px;
  --transition: 0.2s ease;
}

/* ── Reset ─────────────────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  font-family:var(--sans);
  font-size:16px;
  line-height:1.7;
  color:var(--ink);
  background:var(--p1);
  -webkit-font-smoothing:antialiased;
}
img { display:block; max-width:100%; height:auto; }
a { color:inherit; text-decoration:none; }
button { cursor:pointer; border:none; background:none; font:inherit; }
p { margin-bottom:1.2em; }
p:last-child { margin-bottom:0; }

/* ── Typography ────────────────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 {
  font-family:var(--serif);
  font-weight:300;
  line-height:1.15;
  color:var(--ink);
}

/* ── Layout ────────────────────────────────────────────────────────────── */
.container { max-width:var(--max-width); margin:0 auto; padding:0 var(--gutter); }
.content-wrap { max-width:var(--content-width); margin:0 auto; padding:0 var(--gutter); }

/* ── Navigation ────────────────────────────────────────────────────────── */
.site-header {
  position:sticky;
  top:0;
  z-index:100;
  background:rgba(250,249,247,0.92);
  backdrop-filter:blur(18px);
  border-bottom:0.5px solid var(--b);
  transition:background .4s;
}
.nav-inner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:64px;
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 var(--gutter);
}
.site-logo { display:flex; flex-direction:column; line-height:1.1; text-decoration:none; }
.logo-main {
  font-family:var(--serif);
  font-size:1.2rem;
  font-weight:300;
  letter-spacing:.03em;
  color:var(--ink);
}
.logo-main span { color:var(--p5); }
.site-nav { display:flex; align-items:center; gap:2rem; }
.site-nav a {
  font-size:11px;
  font-weight:400;
  letter-spacing:.09em;
  text-transform:uppercase;
  color:var(--ink2);
  text-decoration:none;
  transition:color .2s;
}
.site-nav a:hover { color:var(--p6); }
.nav-cta {
  padding:.5rem 1.25rem;
  border:.5px solid var(--p4);
  border-radius:1px;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--p6) !important;
  transition:border-color .2s,background .2s !important;
}
.nav-cta:hover { background:var(--p2) !important; border-color:var(--p6) !important; }
.nav-toggle { display:none; flex-direction:column; gap:5px; padding:4px; }
.nav-toggle span { display:block; width:22px; height:1px; background:var(--ink); transition:all .2s; }

/* ── Hero ──────────────────────────────────────────────────────────────── */
.hero {
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:0 var(--gutter) 5.5rem;
  position:relative;
  overflow:hidden;
  background:
    radial-gradient(ellipse 60% 50% at 85% 15%,rgba(197,188,230,.35) 0%,transparent 55%),
    radial-gradient(ellipse 45% 55% at 5% 95%,rgba(197,188,230,.2) 0%,transparent 50%),
    var(--p0);
}
.hero-content { position:relative; z-index:2; max-width:860px; }
.hero-eyebrow {
  font-size:11px;
  font-weight:500;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--p5);
  margin-bottom:1.5rem;
  display:flex;
  align-items:center;
  gap:12px;
}
.hero-eyebrow::before { content:''; display:block; width:36px; height:1px; background:var(--p4); }
.hero-title {
  font-family:var(--serif);
  font-size:clamp(3.2rem,7.5vw,7rem);
  font-weight:300;
  line-height:1.04;
  color:var(--ink);
  margin-bottom:1.5rem;
}
.hero-title em { font-style:italic; color:var(--p5); }
.hero-tagline {
  font-size:15px;
  color:var(--ink2);
  max-width:42ch;
  margin-bottom:2.75rem;
  line-height:1.85;
  font-weight:300;
  font-style:italic;
}
.hero-actions { display:flex; gap:1.25rem; align-items:center; flex-wrap:wrap; }

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display:inline-block;
  padding:.85rem 2.25rem;
  font-family:var(--sans);
  font-size:13px;
  font-weight:500;
  letter-spacing:.05em;
  border-radius:2px;
  transition:background .2s,transform .15s,color .2s;
  text-decoration:none;
}
.btn-primary { background:var(--p5); color:var(--p0); }
.btn-primary:hover { background:var(--p6); transform:translateY(-1px); }
.btn-outline {
  background:none;
  border:.5px solid var(--p4);
  color:var(--p6);
}
.btn-outline:hover { background:var(--p2); border-color:var(--p6); }

/* ── Pillar Strip ──────────────────────────────────────────────────────── */
.pillars-strip {
  border-top:.5px solid var(--b);
  border-bottom:.5px solid var(--b);
  background:var(--p0);
  overflow-x:auto;
  scrollbar-width:none;
}
.pillars-strip::-webkit-scrollbar { display:none; }
.pillars-inner {
  display:flex;
  max-width:var(--max-width);
  margin:0 auto;
}
.pillar-link {
  flex:1;
  min-width:140px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
  padding:1.5rem 1rem;
  font-size:10px;
  letter-spacing:.15em;
  text-transform:uppercase;
  color:var(--ink2);
  border-right:.5px solid var(--b);
  transition:background .2s,color .2s;
}
.pillar-link:last-child { border-right:none; }
.pillar-link:hover { background:var(--p2); color:var(--p6); }
.pillar-icon { font-size:1.1rem; }

/* ── Eyebrow / Section labels ──────────────────────────────────────────── */
.section-label {
  font-size:10px;
  font-weight:500;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--p5);
  margin-bottom:1rem;
  display:flex;
  align-items:center;
  gap:10px;
}
.section-label::before { content:''; display:block; width:26px; height:1px; background:var(--p4); }
.section-title {
  font-family:var(--serif);
  font-size:clamp(2rem,4vw,3.2rem);
  font-weight:300;
  line-height:1.12;
  color:var(--ink);
  margin-bottom:1.5rem;
}
.section-title em { font-style:italic; color:var(--p5); }
.section-header {
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  margin-bottom:3rem;
  flex-wrap:wrap;
  gap:1rem;
}
.section-header .section-title { margin-bottom:0; }
.view-all {
  font-size:12px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--p5);
  border-bottom:.5px solid var(--p4);
  padding-bottom:2px;
  transition:color .2s,border-color .2s;
  white-space:nowrap;
}
.view-all:hover { color:var(--p6); border-color:var(--p6); }

/* ── Posts section ─────────────────────────────────────────────────────── */
.posts-section { padding:6.5rem 0; }
.posts-section .container { max-width:var(--max-width); margin:0 auto; padding:0 var(--gutter); }
.posts-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2.5rem;
}
.posts-grid.two-col { grid-template-columns:repeat(2,1fr); }

/* ── Post Card ─────────────────────────────────────────────────────────── */
.post-card {
  position:relative;
}
.post-card-link { display:block; text-decoration:none; }
.post-card-number {
  font-family:var(--serif);
  font-size:3.8rem;
  font-weight:300;
  color:var(--p4);
  line-height:1;
  margin-bottom:1rem;
}
.post-card-image {
  aspect-ratio:16/10;
  overflow:hidden;
  background:var(--p3);
  margin-bottom:1.25rem;
  border-radius:2px;
}
.post-card-image img {
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .5s ease;
}
.post-card:hover .post-card-image img { transform:scale(1.04); }
.post-card-meta { display:flex; align-items:center; gap:10px; margin-bottom:.75rem; }
.pillar-tag {
  display:inline-block;
  font-size:10px;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--p5);
  border:.5px solid var(--p4);
  padding:3px 10px;
  border-radius:1px;
}
.pillar-tag.travel   { color:var(--p5); border-color:var(--p4); }
.pillar-tag.faith    { color:var(--p6); border-color:var(--p5); }
.pillar-tag.base     { color:var(--p5); border-color:var(--p4); }
.post-date { font-size:11px; color:var(--ink2); opacity:.6; }
.post-card-title {
  font-family:var(--serif);
  font-size:1.35rem;
  font-weight:300;
  color:var(--ink);
  line-height:1.3;
  margin-bottom:.75rem;
  transition:color .2s;
}
.post-card:hover .post-card-title { color:var(--p6); }
.post-card-excerpt { font-size:13px; color:var(--ink2); line-height:1.8; font-weight:300; }
.post-card-readmore {
  display:inline-block;
  margin-top:1.1rem;
  font-size:12px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--p5);
  border-bottom:.5px solid var(--p4);
  padding-bottom:2px;
  transition:color .2s,border-color .2s;
}
.post-card:hover .post-card-readmore { color:var(--p6); border-color:var(--p6); }

/* ── Featured post ─────────────────────────────────────────────────────── */
.featured-post {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
  background:var(--p2);
  border:.5px solid var(--b);
  border-radius:2px;
  overflow:hidden;
  margin-bottom:3rem;
  text-decoration:none;
  transition:box-shadow .2s;
}
.featured-post:hover { box-shadow:0 8px 40px rgba(155,142,196,.12); }
.featured-post-image {
  aspect-ratio:4/3;
  overflow:hidden;
  background:var(--p3);
}
.featured-post-image img { width:100%; height:100%; object-fit:cover; transition:transform .5s; }
.featured-post:hover .featured-post-image img { transform:scale(1.03); }
.featured-post-body {
  padding:3rem;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.featured-label {
  font-size:10px;
  letter-spacing:.25em;
  text-transform:uppercase;
  color:var(--p5);
  margin-bottom:1rem;
}
.featured-post-title {
  font-family:var(--serif);
  font-size:clamp(1.4rem,2.5vw,2rem);
  font-weight:300;
  line-height:1.25;
  margin-bottom:1rem;
  color:var(--ink);
  transition:color .2s;
}
.featured-post:hover .featured-post-title { color:var(--p6); }
.featured-post-excerpt { font-size:14px; color:var(--ink2); line-height:1.75; margin-bottom:1.5rem; }
.read-more {
  font-size:12px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--p5);
  display:inline-flex;
  align-items:center;
  gap:6px;
  transition:gap .2s;
}
.featured-post:hover .read-more { gap:10px; }

/* ── About strip ───────────────────────────────────────────────────────── */
.about-strip { background:var(--p2); border-top:.5px solid var(--b); border-bottom:.5px solid var(--b); padding:6.5rem 0; }
.about-strip-inner {
  display:grid;
  grid-template-columns:1fr 2fr;
  gap:5rem;
  align-items:center;
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 var(--gutter);
}
.about-portrait {
  aspect-ratio:3/4;
  border-radius:2px;
  overflow:hidden;
  background:linear-gradient(145deg,var(--p6) 0%,var(--p5) 55%,var(--p4) 100%);
  max-width:280px;
}
.about-portrait img { width:100%; height:100%; object-fit:cover; }
.about-eyebrow { font-size:10px; letter-spacing:.14em; text-transform:uppercase; color:var(--p5); margin-bottom:1rem; display:flex; align-items:center; gap:10px; }
.about-eyebrow::before { content:''; display:block; width:26px; height:1px; background:var(--p4); }
.about-heading { font-family:var(--serif); font-size:clamp(1.6rem,3.5vw,2.6rem); font-weight:300; margin-bottom:1.25rem; line-height:1.15; }
.about-bio { font-size:15px; color:var(--ink2); line-height:1.85; margin-bottom:1.5rem; font-weight:300; }
.about-signature { font-family:var(--serif); font-size:1.8rem; font-weight:300; font-style:italic; color:var(--p5); margin-bottom:1.75rem; }

/* ── Single post ───────────────────────────────────────────────────────── */
.post-hero { padding:5rem var(--gutter) 3rem; max-width:var(--content-width); margin:0 auto; }
.post-hero-meta { display:flex; align-items:center; gap:12px; margin-bottom:1.5rem; }
.post-hero-title { font-family:var(--serif); font-size:clamp(1.8rem,5vw,3rem); font-weight:300; line-height:1.15; margin-bottom:1.25rem; }
.post-hero-excerpt { font-size:1.05rem; color:var(--ink2); font-style:italic; line-height:1.65; margin-bottom:1.5rem; border-left:.5px solid var(--p4); padding-left:1.5rem; }
.post-cover { width:100%; max-width:860px; margin:0 auto 3.5rem; padding:0 var(--gutter); }
.post-cover img { width:100%; border-radius:2px; aspect-ratio:16/9; object-fit:cover; }
.post-content { max-width:var(--content-width); margin:0 auto; padding:0 var(--gutter) 5rem; }
.post-content p { font-size:1rem; line-height:1.85; margin-bottom:1.5em; color:var(--ink2); }
.post-content h2 { font-size:1.7rem; font-weight:300; margin:2.5em 0 .8em; }
.post-content h3 { font-size:1.3rem; font-weight:300; margin:2em 0 .6em; }
.post-content blockquote {
  border-left:.5px solid var(--p5);
  padding:4px 0 4px 1.5rem;
  margin:2em 0;
  font-style:italic;
  font-family:var(--serif);
  font-size:1.15rem;
  color:var(--ink2);
  line-height:1.6;
}
.post-content img { width:100%; border-radius:2px; margin:2em 0; }
.post-content ul,.post-content ol { padding-left:1.5em; margin-bottom:1.5em; }
.post-content li { margin-bottom:.5em; line-height:1.7; }
.post-content a { color:var(--p5); text-decoration:underline; text-underline-offset:3px; }
.post-content a:hover { color:var(--p6); }
.post-content hr { border:none; border-top:.5px solid var(--b); margin:3em 0; }

/* ── Post navigation ───────────────────────────────────────────────────── */
.post-nav { border-top:.5px solid var(--b); padding:3rem var(--gutter); max-width:var(--content-width); margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:2rem; }
.post-nav-item { display:flex; flex-direction:column; gap:4px; }
.post-nav-item.next { text-align:right; }
.post-nav-label { font-size:10px; letter-spacing:.2em; text-transform:uppercase; color:var(--ink2); opacity:.6; }
.post-nav-title { font-family:var(--serif); font-size:1rem; font-weight:300; color:var(--ink); transition:color .2s; }
.post-nav-title:hover { color:var(--p6); }

/* ── Archive ───────────────────────────────────────────────────────────── */
.archive-header { padding:4rem 0 3rem; border-bottom:.5px solid var(--b); margin-bottom:3rem; }
.archive-header-inner { max-width:var(--max-width); margin:0 auto; padding:0 var(--gutter); }
.archive-title-large { font-family:var(--serif); font-size:clamp(2rem,5vw,3.5rem); font-weight:300; display:flex; align-items:center; gap:16px; }
.archive-count { font-size:11px; letter-spacing:.15em; color:var(--ink2); opacity:.6; font-family:var(--sans); }
.archive-layout { display:grid; grid-template-columns:1fr 280px; gap:3rem; max-width:var(--max-width); margin:0 auto; padding:0 var(--gutter) 5rem; }
.sidebar-widget { background:var(--p2); border:.5px solid var(--b); border-radius:2px; padding:1.5rem; margin-bottom:1.5rem; }
.widget-title { font-size:10px; letter-spacing:.25em; text-transform:uppercase; color:var(--p5); margin-bottom:1rem; padding-bottom:.75rem; border-bottom:.5px solid var(--b); }
.widget-pillar-list { list-style:none; }
.widget-pillar-list li { display:flex; align-items:center; justify-content:space-between; padding:8px 0; border-bottom:.5px solid var(--b); }
.widget-pillar-list li:last-child { border-bottom:none; }
.widget-pillar-list a { font-size:13px; color:var(--ink); transition:color .2s; }
.widget-pillar-list a:hover { color:var(--p5); }
.widget-count { font-size:11px; color:var(--ink2); background:var(--p3); padding:2px 8px; border-radius:10px; }

/* ── About page ────────────────────────────────────────────────────────── */
.page-about-hero { display:grid; grid-template-columns:1fr 1.5fr; gap:5rem; align-items:center; padding:5rem var(--gutter); max-width:var(--max-width); margin:0 auto; }
.about-photo { border-radius:2px; overflow:hidden; aspect-ratio:4/5; background:linear-gradient(145deg,var(--p6) 0%,var(--p5) 55%,var(--p4) 100%); }
.about-photo img { width:100%; height:100%; object-fit:cover; }
.about-content { padding-top: 0; }
.about-content h1 { font-family:var(--serif); font-size:clamp(1.8rem,4vw,3rem); font-weight:300; margin-bottom:1.5rem; }
.about-content p { font-size:15px; color:var(--ink2); line-height:1.85; margin-bottom:1.2em; font-weight:300; }
.about-content p em { color:var(--p5); }
.about-signature { font-family:var(--serif); font-size:1.6rem; font-weight:300; font-style:italic; color:var(--p5); margin-top:1.5rem; }
.about-eyebrow { font-size:10px; letter-spacing:.14em; text-transform:uppercase; color:var(--p5); margin-bottom:1rem; display:flex; align-items:center; gap:10px; }
.about-eyebrow::before { content:''; display:block; width:26px; height:1px; background:var(--p4); }

/* ── Work With Me page ─────────────────────────────────────────────────── */
.mediakit-hero {
  background:linear-gradient(145deg,#2d2458 0%,#4a3d8a 60%,var(--p6) 100%);
  padding:5rem var(--gutter);
  text-align:center;
  color:var(--p0);
}
.mediakit-hero p:first-child { font-size:10px; letter-spacing:.3em; text-transform:uppercase; color:rgba(255,255,255,.6); margin-bottom:12px; }
.mediakit-hero h1 { font-family:var(--serif); font-size:clamp(2rem,5vw,3.5rem); font-weight:300; color:var(--p0); margin-bottom:12px; }
.mediakit-hero p:last-child { color:rgba(255,255,255,.7); font-size:1rem; margin:0; }
.mediakit-stats { display:grid; grid-template-columns:repeat(4,1fr); gap:1px; background:var(--b); border:.5px solid var(--b); border-radius:2px; overflow:hidden; margin:3rem 0; }
.stat-block { background:var(--p0); padding:2rem 1.25rem; text-align:center; }
.stat-number { font-family:var(--serif); font-size:2.4rem; font-weight:300; color:var(--p5); line-height:1; margin-bottom:6px; }
.stat-label { font-size:10px; letter-spacing:.15em; text-transform:uppercase; color:var(--ink2); }
.collab-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:1px; background:var(--b); margin:2rem 0; }
.collab-card { background:var(--p2); padding:1.75rem; transition:background .2s; }
.collab-card:hover { background:var(--p0); }
.collab-card h4 { font-family:var(--serif); font-size:1.1rem; font-weight:300; color:var(--ink); margin-bottom:.5rem; }
.collab-card p { font-size:13px; color:var(--ink2); line-height:1.65; margin:0; }

/* ── Footer ────────────────────────────────────────────────────────────── */
.site-footer { background:var(--ink); color:#aaa; padding:4rem 0 2rem; }
.footer-inner { max-width:var(--max-width); margin:0 auto; padding:0 var(--gutter); }
.footer-top { display:grid; grid-template-columns:1.5fr 1fr 1fr; gap:3rem; padding-bottom:2.5rem; border-bottom:.5px solid rgba(255,255,255,.08); margin-bottom:1.75rem; }
.footer-brand .logo-main { color:var(--p0); font-size:1.3rem; margin-bottom:1rem; }
.footer-tagline { font-style:italic; font-size:13px; color:#666; line-height:1.6; margin-bottom:1.25rem; }
.footer-social { display:flex; gap:10px; }
.footer-social a { font-size:10px; letter-spacing:.15em; text-transform:uppercase; color:#555; padding:6px 12px; border:.5px solid #333; border-radius:1px; transition:all .2s; }
.footer-social a:hover { border-color:var(--p4); color:var(--p4); }
.footer-col h5 { font-size:10px; letter-spacing:.25em; text-transform:uppercase; color:#555; margin-bottom:1rem; font-family:var(--sans); font-weight:400; }
.footer-col ul { list-style:none; }
.footer-col ul li { margin-bottom:.75rem; }
.footer-col ul a { font-size:13px; color:#777; transition:color .2s; }
.footer-col ul a:hover { color:var(--p4); }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; font-size:12px; color:#444; }

/* ── Pagination ────────────────────────────────────────────────────────── */
.pagination { display:flex; justify-content:center; gap:8px; padding:3rem 0; }
.page-numbers { display:inline-flex; align-items:center; justify-content:center; width:36px; height:36px; font-size:13px; color:var(--ink2); border:.5px solid var(--b); transition:all .2s; }
.page-numbers:hover,.page-numbers.current { background:var(--p5); color:var(--p0); border-color:var(--p5); }
.page-numbers.dots { border:none; }

/* ── Tablet (≤900px) ───────────────────────────────────────────────────── */
@media(max-width:900px){
  :root { --gutter:2rem; }
  .posts-grid { grid-template-columns:repeat(2,1fr); gap:2rem; }
  .posts-grid.two-col { grid-template-columns:1fr; }
  .featured-post { grid-template-columns:1fr; }
  .featured-post-image { aspect-ratio:16/9; }
  .featured-post-body { padding:2rem; }
  .footer-top { grid-template-columns:1fr 1fr; gap:2rem; }
  .footer-top .footer-brand { grid-column:1/-1; }
  .about-strip-inner { grid-template-columns:1fr; text-align:center; gap:2.5rem; }
  .about-eyebrow { justify-content:center; }
  .about-portrait { max-width:200px; margin:0 auto; }
  .page-about-hero { grid-template-columns:1fr; gap:2.5rem; }
  .about-photo { max-width:320px; margin:0 auto; }
  .archive-layout { grid-template-columns:1fr; }
  .mediakit-stats { grid-template-columns:repeat(2,1fr); }
  .collab-grid { grid-template-columns:1fr; }
  .hero-title { font-size:clamp(3rem,7vw,5.5rem); }
  .posts-section { padding:5rem 0; }
}

/* ── Mobile (≤640px) ───────────────────────────────────────────────────── */
@media(max-width:640px){
  :root { --gutter:1.25rem; }

  /* Nav */
  .nav-toggle { display:flex; }
  .site-nav {
    display:none;
    flex-direction:column;
    position:fixed;
    top:64px;
    left:0;
    right:0;
    bottom:0;
    background:rgba(250,249,247,.98);
    backdrop-filter:blur(20px);
    padding:2.5rem var(--gutter);
    gap:0;
    overflow-y:auto;
    z-index:99;
    border-top:.5px solid var(--b);
  }
  .site-nav.open { display:flex; }
  .site-nav a {
    font-size:13px;
    letter-spacing:.08em;
    padding:1.1rem 0;
    border-bottom:.5px solid var(--b);
    color:var(--ink);
  }
  .site-nav a:last-child { border-bottom:none; }
  .nav-cta {
    margin-top:1.5rem;
    text-align:center;
    padding:1rem !important;
    border-radius:2px !important;
  }
  /* Animated hamburger */
  .nav-toggle.active span:nth-child(1) { transform:translateY(6px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity:0; }
  .nav-toggle.active span:nth-child(3) { transform:translateY(-6px) rotate(-45deg); }
  .nav-toggle span { transition:transform .2s,opacity .2s; }

  /* Hero */
  .hero {
    min-height:100svh;
    padding:6rem var(--gutter) 3.5rem;
    justify-content:center;
  }
  .hero-title { font-size:clamp(2.6rem,11vw,3.8rem); }
  .hero-tagline { font-size:14px; max-width:100%; }
  .hero-actions { flex-direction:column; gap:.75rem; }
  .hero-actions .btn { text-align:center; width:100%; }

  /* Pillar strip */
  .pillars-inner { gap:0; }
  .pillar-link { min-width:110px; padding:1.1rem .75rem; font-size:9px; }
  .pillar-icon { font-size:1rem; }

  /* Posts */
  .posts-section { padding:3.5rem 0; }
  .posts-grid { grid-template-columns:1fr; gap:2rem; }
  .post-card-number { font-size:2.8rem; }

  /* Featured */
  .featured-post-body { padding:1.5rem; }
  .featured-post-title { font-size:1.3rem; }

  /* About strip */
  .about-strip { padding:4rem 0; }
  .about-strip-inner { gap:2rem; }
  .about-portrait { max-width:160px; }
  .about-heading { font-size:1.6rem; }

  /* About page */
  .page-about-hero { padding:3rem var(--gutter); gap:2rem; }

  /* Section titles */
  .section-title { font-size:clamp(1.6rem,6vw,2.2rem); }

  /* Post content */
  .post-hero { padding:3rem var(--gutter) 2rem; }
  .post-content { padding:0 var(--gutter) 3rem; }
  .post-content p { font-size:.95rem; }
  .post-nav { grid-template-columns:1fr; gap:1.5rem; }
  .post-nav-item.next { text-align:left; }

  /* Media kit */
  .mediakit-hero { padding:3.5rem var(--gutter); }
  .mediakit-stats { grid-template-columns:repeat(2,1fr); }

  /* Footer */
  .footer-top { grid-template-columns:1fr; gap:2rem; padding-bottom:2rem; }
  .footer-bottom { flex-direction:column; gap:8px; text-align:center; }
  .site-footer { padding:3rem 0 1.5rem; }
}
