/* ═══════════════════════════════════════════════════════════════
   NORTHGRAIN BLOG - MAIN STYLESHEET
   Matches northgrainmedia.com design system exactly
   ═══════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100%; }

:root {
  --black: #0D0D0D;
  --offblack: #111111;
  --cream: #F5F3EF;
  --gold: #C9A96E;
  --gold-light: #DFC99A;
  --gold-dark: #8C6A4A;
  --text-mid: #6B6860;
  --text-muted: #9A9890;
  --border-dark: rgba(201,169,110,0.15);
  --border-light: rgba(140,106,74,0.18);
}

html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.animate-fade-up { animation: fadeUp 0.9s cubic-bezier(0.16,1,0.3,1) forwards; opacity: 0; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }

.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.32s; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 5rem; transition: all 0.4s ease;
  box-sizing: border-box; width: 100%;
}
nav.scrolled {
  background: rgba(13,13,13,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 0.5px solid var(--border-dark);
  padding: 1rem 5rem;
}
.nav-logo a { display: inline-block; line-height: 0; font-size: 0; color: transparent; text-decoration: none; vertical-align: top; }
.nav-logo img { height: 62px; width: auto; display: block; mix-blend-mode: screen; }
.nav-links { display: flex; gap: 2.8rem; list-style: none; }
.nav-links a {
  color: #B0ADA6; font-size: 0.72rem; letter-spacing: 0.16em;
  text-transform: uppercase; text-decoration: none;
  transition: color 0.25s; font-family: 'Jost', sans-serif; font-weight: 400;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-cta {
  border: 0.5px solid var(--gold); color: var(--gold);
  padding: 0.6rem 1.8rem; font-size: 0.68rem; letter-spacing: 0.18em;
  text-transform: uppercase; text-decoration: none;
  font-family: 'Jost', sans-serif; font-weight: 400; transition: all 0.25s;
}
.nav-cta:hover { background: var(--gold); color: var(--black); }

/* Hamburger */
.nav-hamburger {
  display: none; flex-direction: column; justify-content: center;
  align-items: center; gap: 5px; width: 40px; height: 40px;
  background: none; border: 0.5px solid rgba(201,169,110,0.25);
  cursor: pointer; padding: 0; transition: border-color 0.25s; flex-shrink: 0;
}
.nav-hamburger:hover { border-color: rgba(201,169,110,0.55); }
.nav-hamburger span {
  display: block; width: 18px; height: 0.5px;
  background: var(--gold); transition: all 0.3s ease; transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 190;
  background: rgba(10,10,10,0.98); backdrop-filter: blur(24px);
  display: flex; flex-direction: column; justify-content: center;
  align-items: flex-start; padding: 6rem 2.5rem 3rem;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}
.mobile-menu.open { transform: translateX(0); pointer-events: all; }
.mobile-menu ul { list-style: none; width: 100%; margin-bottom: 3rem; }
.mobile-menu ul li { border-bottom: 0.5px solid rgba(201,169,110,0.08); }
.mobile-menu ul li a {
  display: block; padding: 1.4rem 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 400; color: var(--cream);
  text-decoration: none; letter-spacing: -0.01em; line-height: 1;
  transition: color 0.25s, padding-left 0.25s;
}
.mobile-menu ul li a:hover, .mobile-menu ul li a.active { color: var(--gold); padding-left: 0.5rem; }
.mobile-menu-cta {
  display: inline-block; background: var(--gold); color: var(--black);
  padding: 1rem 2.5rem; font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; text-decoration: none; font-weight: 500;
  font-family: 'Jost', sans-serif; margin-bottom: 3rem;
}
.mobile-menu-social { display: flex; gap: 1rem; margin-top: auto; }
.mobile-menu-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border: 0.5px solid rgba(201,169,110,0.3);
  color: #A8A49C; text-decoration: none; transition: border-color 0.25s, color 0.25s;
}
.mobile-menu-social a:hover { border-color: var(--gold); color: var(--gold); }
.mobile-menu-social svg { width: 14px; height: 14px; }
.mobile-menu-copy {
  font-size: 0.58rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(154,152,144,0.4); font-family: 'Jost', sans-serif; margin-top: 1.5rem;
}

/* ── TICKER ── */
.ticker-wrap {
  border-top: 0.5px solid var(--border-dark);
  border-bottom: 0.5px solid var(--border-dark);
  background: #080808; overflow: hidden; padding: 1.1rem 0;
}
.ticker-track { display: flex; white-space: nowrap; animation: ticker 30s linear infinite; }
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: inline-flex; align-items: center; gap: 2rem; padding: 0 2.5rem;
  font-size: 0.6rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--text-muted); font-family: 'Jost', sans-serif;
}
.ticker-dot { color: var(--gold); font-size: 0.4rem; }

/* ── SHARED ── */
.s-label {
  font-size: 0.62rem; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 1rem; font-family: 'Jost', sans-serif;
}
.s-label::before { content: ''; width: 26px; height: 0.5px; background: var(--gold); }

/* ── BLOG HERO ── */
.blog-hero {
  min-height: 70vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 10rem 5rem 5rem;
  position: relative; overflow: hidden;
  border-bottom: 0.5px solid var(--border-dark);
}
.hero-noise {
  position: absolute; inset: 0; pointer-events: none; opacity: 0.028; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 180px;
}
.hero-orb {
  position: absolute; right: -5%; top: 15%; width: 600px; height: 600px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle at 40% 40%, rgba(201,169,110,0.07), transparent 60%);
  animation: float 12s ease-in-out infinite;
}
.hero-label {
  font-size: 0.62rem; letter-spacing: 0.42em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2rem;
  display: flex; align-items: center; gap: 1rem; font-family: 'Jost', sans-serif;
}
.hero-label::before { content: ''; width: 26px; height: 0.5px; background: var(--gold); }
.blog-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 7vw, 6.5rem); font-weight: 400;
  line-height: 1.02; letter-spacing: -0.02em; color: var(--cream);
  margin-bottom: 1.8rem; max-width: 700px;
}
.blog-hero h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 1rem; color: #C8C5BE; max-width: 480px; line-height: 1.9; font-weight: 300;
}

/* ── BLOG MAIN CONTAINER ── */
.blog-main { padding: 6rem 5rem; }
.blog-container { max-width: 1280px; margin: 0 auto; }

/* ── POST META ── */
.post-meta {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 1.2rem;
}
.post-cat a {
  font-size: 0.58rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); border: 0.5px solid rgba(201,169,110,0.28);
  padding: 0.28rem 0.8rem; font-family: 'Jost', sans-serif;
  text-decoration: none; transition: background 0.2s;
}
.post-cat a:hover { background: rgba(201,169,110,0.08); }
.post-date, .post-read-time {
  font-size: 0.62rem; letter-spacing: 0.1em; color: var(--text-muted);
  font-family: 'Jost', sans-serif;
}
.meta-divider { color: rgba(201,169,110,0.3); font-size: 0.5rem; }

/* ── FEATURED POST ── */
.post-featured {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 0;
  border: 0.5px solid var(--border-dark); margin-bottom: 1.5px;
  transition: background 0.25s;
}
.post-featured:hover { background: #0a0a0a; }
.post-featured-img { overflow: hidden; display: block; }
.post-featured-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.post-featured:hover .post-featured-img img { transform: scale(1.03); }
.post-featured-body {
  padding: 3.5rem; display: flex; flex-direction: column; justify-content: center;
  border-left: 0.5px solid var(--border-dark);
}
.post-featured-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 400;
  color: var(--cream); line-height: 1.1; margin-bottom: 1.2rem;
}
.post-featured-title a { text-decoration: none; transition: color 0.25s; }
.post-featured-title a:hover { color: var(--gold); }
.post-excerpt { font-size: 0.88rem; color: #B0ADA6; line-height: 1.85; margin-bottom: 2rem; }
.post-read-link {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); text-decoration: none; font-family: 'Jost', sans-serif;
  transition: letter-spacing 0.2s;
}
.post-read-link:hover { letter-spacing: 0.24em; }

/* ── POSTS GRID ── */
.posts-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--border-dark);
  border: 0.5px solid var(--border-dark);
  border-top: none; margin-bottom: 4rem;
}
.post-card {
  background: var(--black); display: flex; flex-direction: column;
  transition: background 0.25s; position: relative; overflow: hidden;
}
.post-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0); transform-origin: left; transition: transform 0.5s;
}
.post-card:hover { background: #0d0d0d; }
.post-card:hover::before { transform: scaleX(1); }
.post-card-img { overflow: hidden; display: block; aspect-ratio: 16/9; }
.post-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.post-card:hover .post-card-img img { transform: scale(1.04); }
.post-card-body { padding: 2.2rem; flex-grow: 1; display: flex; flex-direction: column; }
.post-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 400; color: var(--cream);
  line-height: 1.25; margin-bottom: 0.8rem; flex-grow: 1;
}
.post-card-title a { text-decoration: none; transition: color 0.25s; }
.post-card-title a:hover { color: var(--gold); }
.post-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1.5rem; padding-top: 1.2rem;
  border-top: 0.5px solid var(--border-dark);
}

/* ── PAGINATION ── */
.blog-pagination { margin-top: 3rem; }
.blog-pagination .page-numbers {
  list-style: none; display: flex; gap: 0.5rem; flex-wrap: wrap;
}
.blog-pagination .page-numbers li a,
.blog-pagination .page-numbers li span {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; font-size: 0.72rem;
  font-family: 'Jost', sans-serif; color: #B0ADA6; text-decoration: none;
  border: 0.5px solid var(--border-dark); transition: all 0.2s;
}
.blog-pagination .page-numbers li a:hover,
.blog-pagination .page-numbers li span.current {
  border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,0.06);
}

/* ── NO POSTS ── */
.no-posts { text-align: center; padding: 6rem 2rem; }
.no-posts h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem; font-weight: 400; color: var(--cream);
  margin: 1.5rem 0; line-height: 1.1;
}
.no-posts h2 em { font-style: italic; color: var(--gold); }
.no-posts p { color: #B0ADA6; max-width: 400px; margin: 0 auto 2.5rem; line-height: 1.85; }
.btn-gold {
  display: inline-block; background: var(--gold); color: var(--black);
  padding: 1rem 2.8rem; font-size: 0.72rem; letter-spacing: 0.22em;
  text-transform: uppercase; text-decoration: none; font-weight: 500;
  font-family: 'Jost', sans-serif; transition: all 0.25s;
}
.btn-gold:hover { background: var(--gold-light); }

/* ── POST HERO (single) ── */
.post-hero {
  min-height: 65vh; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 10rem 5rem 5rem; position: relative; overflow: hidden;
  border-bottom: 0.5px solid var(--border-dark);
}
.post-hero-inner { position: relative; z-index: 2; max-width: 820px; }
.post-hero-meta {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.post-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 5.5rem); font-weight: 400;
  line-height: 1.02; letter-spacing: -0.02em; color: var(--cream);
  margin-bottom: 1.8rem;
}
.post-hero-excerpt {
  font-size: 1.1rem; color: #C8C5BE; line-height: 1.85; margin-bottom: 2.5rem; max-width: 580px;
}
.post-hero-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar img { width: 48px; height: 48px; border-radius: 50%; border: 0.5px solid var(--gold); }
.author-name {
  display: block; font-size: 0.82rem; color: var(--cream); font-weight: 400;
  font-family: 'Jost', sans-serif;
}
.author-role {
  display: block; font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); font-family: 'Jost', sans-serif;
}

/* ── FEATURED IMAGE ── */
.post-featured-image {
  border-top: 0.5px solid var(--border-dark);
  border-bottom: 0.5px solid var(--border-dark);
  max-height: 560px; overflow: hidden;
}
.post-featured-image img { width: 100%; height: 100%; object-fit: cover; }

/* ── POST LAYOUT & CONTENT ── */
.post-layout { padding: 5rem 5rem; }
.post-container { max-width: 760px; margin: 0 auto; }

.post-content { font-size: 1.05rem; line-height: 1.95; color: #C8C5BE; }
.post-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem; font-weight: 400; color: var(--cream);
  margin: 3rem 0 1.2rem; line-height: 1.15;
}
.post-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 400; color: var(--cream);
  margin: 2.5rem 0 1rem;
}
.post-content h4 {
  font-family: 'Jost', sans-serif; font-size: 0.78rem;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
  margin: 2rem 0 0.8rem;
}
.post-content p { margin-bottom: 1.6rem; }
.post-content p:last-child { margin-bottom: 0; }
.post-content a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.post-content a:hover { opacity: 0.8; }
.post-content strong { color: var(--cream); font-weight: 500; }
.post-content em { font-style: italic; color: var(--gold-light); }
.post-content blockquote {
  border-left: 2px solid var(--gold); padding: 1.5rem 2rem;
  margin: 2.5rem 0; background: rgba(201,169,110,0.04);
  font-family: 'Cormorant Garamond', serif; font-size: 1.4rem;
  font-style: italic; color: var(--cream); line-height: 1.5;
}
.post-content ul, .post-content ol {
  margin: 1.5rem 0 1.5rem 1.5rem; color: #C8C5BE;
}
.post-content li { margin-bottom: 0.6rem; padding-left: 0.5rem; }
.post-content ul li::marker { color: var(--gold); }
.post-content ol li::marker { color: var(--gold); font-family: 'Cormorant Garamond', serif; }
.post-content img {
  width: 100%; border: 0.5px solid var(--border-dark);
  margin: 2rem 0;
}
.post-content pre {
  background: #080808; border: 0.5px solid var(--border-dark);
  padding: 1.5rem; overflow-x: auto; margin: 2rem 0;
  font-size: 0.85rem; line-height: 1.6; color: #B0ADA6;
}
.post-content hr {
  border: none; border-top: 0.5px solid var(--border-dark); margin: 3rem 0;
}

/* ── POST FOOTER ── */
.post-footer {
  margin-top: 4rem; padding-top: 2.5rem;
  border-top: 0.5px solid var(--border-dark);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem;
}
.post-tags { font-size: 0.72rem; color: var(--text-muted); font-family: 'Jost', sans-serif; }
.post-tags .tags-label { color: var(--gold); margin-right: 0.5rem; }
.post-tags a { color: #B0ADA6; text-decoration: none; transition: color 0.2s; }
.post-tags a:hover { color: var(--gold); }
.post-share { display: flex; align-items: center; gap: 0.8rem; }
.share-label {
  font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--text-muted); font-family: 'Jost', sans-serif;
}
.share-btn {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border: 0.5px solid rgba(201,169,110,0.3);
  color: #A8A49C; text-decoration: none; transition: all 0.2s;
}
.share-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,0.06); }
.share-btn svg { width: 13px; height: 13px; }

/* ── RELATED POSTS ── */
.related-posts {
  margin-top: 5rem; padding-top: 4rem;
  border-top: 0.5px solid var(--border-dark);
}
.related-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 400; color: var(--cream);
  margin-bottom: 2.5rem; line-height: 1.1;
}
.related-title em { font-style: italic; color: var(--gold); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-dark); border: 0.5px solid var(--border-dark); }
.related-card {
  background: var(--black); text-decoration: none;
  display: flex; flex-direction: column; transition: background 0.25s;
}
.related-card:hover { background: #0d0d0d; }
.related-img { overflow: hidden; aspect-ratio: 16/9; }
.related-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.related-card:hover .related-img img { transform: scale(1.04); }
.related-body { padding: 1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.related-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 400; color: var(--cream);
  margin: 0.5rem 0 auto; line-height: 1.3;
}
.related-read {
  display: block; margin-top: 1rem; font-size: 0.62rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); font-family: 'Jost', sans-serif;
}

/* ── BACK LINK ── */
.back-to-blog { margin-top: 3.5rem; padding-top: 2.5rem; border-top: 0.5px solid var(--border-dark); }
.back-link {
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-muted); text-decoration: none; font-family: 'Jost', sans-serif;
  transition: color 0.2s;
}
.back-link:hover { color: var(--gold); }

/* ── CONTACT STRIP ── */
#contact-strip {
  background: var(--offblack); padding: 5rem;
  border-top: 0.5px solid var(--border-dark);
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3rem;
}
.c-item h4 {
  font-size: 0.58rem; letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem; font-family: 'Jost', sans-serif;
}
.c-item p, .c-item a {
  font-size: 0.92rem; color: #C8C5BE; text-decoration: none;
  transition: color 0.2s; font-weight: 300; line-height: 1.8;
}
.c-item a:hover { color: var(--gold); }

/* ── FOOTER ── */
footer {
  background: #070707; padding: 2rem 5rem;
  border-top: 0.5px solid var(--border-dark);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}
.f-logo img { height: 34px; width: auto; filter: brightness(0.85); mix-blend-mode: screen; }
.f-links { display: flex; gap: 2rem; }
.f-links a {
  font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: #B0ADA6; text-decoration: none; transition: color 0.2s; font-family: 'Jost', sans-serif;
}
.f-links a:hover { color: var(--gold); }
.f-social { display: flex; align-items: center; gap: 1rem; }
.f-social a {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border: 0.5px solid rgba(201,169,110,0.45);
  color: #A8A49C; text-decoration: none; transition: all 0.25s;
}
.f-social a:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,0.08); }
.f-social svg { width: 14px; height: 14px; }
.f-copy { font-size: 0.6rem; color: rgba(154,152,144,0.75); font-family: 'Jost', sans-serif; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav, nav.scrolled { padding: 1.2rem 2rem; }
  .blog-main { padding: 4rem 2rem; }
  .blog-hero { padding: 8rem 2rem 4rem; min-height: 55vh; }
  .post-featured { grid-template-columns: 1fr; }
  .post-featured-img { aspect-ratio: 16/9; }
  .post-featured-body { border-left: none; border-top: 0.5px solid var(--border-dark); padding: 2.5rem; }
  .posts-grid { grid-template-columns: 1fr 1fr; }
  .post-hero { padding: 8rem 2rem 4rem; }
  .post-layout { padding: 4rem 2rem; }
  .related-grid { grid-template-columns: 1fr; }
  #contact-strip { grid-template-columns: 1fr; padding: 3rem 2rem; }
  footer { flex-direction: column; align-items: flex-start; padding: 1.8rem 2rem; }
}
@media (max-width: 768px) {
  nav, nav.scrolled { padding: 1rem 1.2rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .blog-hero h1 { font-size: 2.8rem; }
  .posts-grid { grid-template-columns: 1fr; }
  .post-hero-title { font-size: 2.5rem; }
  .post-layout { padding: 3rem 1.5rem; }
  .post-footer { flex-direction: column; align-items: flex-start; }
  .related-grid { grid-template-columns: 1fr; }
}
