  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --blue:     #1F3A5F;
    --blue-dk:  #162A44;
    --blue-lt:  #2A4D7A;
    --gold:     #D58700;
    --gold-lt:  #EFB321;
    --gold-dk:  #B87200;
    --steel:    #4A4A4A;
    --mid:      #6B7280;
    --light:    #F2F4F7;
    --border:   #E5E7EB;
    --white:    #FFFFFF;
    --green:    #2E7D32;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'IBM Plex Sans', sans-serif;
    color: var(--steel);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

  .label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--mid);
  }
  .label--light { color: rgba(255,255,255,0.65); }
  .label--gold  { color: var(--gold); }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 12px rgba(0,0,0,0.06);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    height: 68px;
  }
  .nav-logo img {
    height: 38px;
    width: auto;
    display: block;
  }
  .nav-links {
    display: flex; align-items: center; gap: 32px;
  }
  .nav-links a {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--steel);
    text-decoration: none;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--blue); }
  .nav-cta {
    background: var(--gold) !important;
    color: var(--white) !important;
    padding: 9px 20px;
    letter-spacing: 0.12em !important;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--gold-dk) !important; }

  /* ─── HERO ─── */
  #hero {
    position: relative;
    background: var(--blue);
    min-height: 100vh;
    display: flex; flex-direction: column; justify-content: center;
    padding-top: 68px;
    overflow: hidden;
  }
  .hero-grid-bg {
    position: absolute; inset: 0; opacity: 0.04;
    background-image:
      linear-gradient(var(--white) 1px, transparent 1px),
      linear-gradient(90deg, var(--white) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
  }
  .hero-rule {
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 4px; background: var(--gold);
  }
  .hero-content {
    position: relative; z-index: 2;
    padding: 96px 0 80px;
  }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 10px;
    margin-bottom: 36px;
    opacity: 0; animation: fadeUp 0.6s ease 0.1s forwards;
  }
  .hero-tag-line { width: 32px; height: 1px; background: var(--gold); }

  .hero-h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(52px, 7vw, 88px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.01em;
    color: var(--white);
    max-width: 820px;
    margin-bottom: 28px;
    opacity: 0; animation: fadeUp 0.7s ease 0.25s forwards;
  }
  .hero-h1 em {
    font-style: normal;
    color: var(--gold);
  }
  .hero-sub {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255,255,255,0.78);
    max-width: 540px;
    margin-bottom: 48px;
    opacity: 0; animation: fadeUp 0.7s ease 0.4s forwards;
  }
  .hero-actions {
    display: flex; align-items: center; gap: 20px;
    opacity: 0; animation: fadeUp 0.7s ease 0.55s forwards;
  }
  .btn-primary {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 16px 32px;
    transition: background 0.2s;
  }
  .btn-primary:hover { background: var(--gold-dk); }
  .btn-ghost {
    display: inline-flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,0.7);
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s;
  }
  .btn-ghost:hover { color: var(--white); }

  .hero-stats {
    position: relative; z-index: 2;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 32px 0;
    display: grid; grid-template-columns: repeat(3, 1fr);
    opacity: 0; animation: fadeUp 0.7s ease 0.7s forwards;
  }
  .hero-stat { padding: 0 40px 0 0; border-right: 1px solid rgba(255,255,255,0.08); }
  .hero-stat:first-child { padding-left: 0; }
  .hero-stat:last-child  { border-right: none; padding-right: 0; }
  .stat-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 42px; font-weight: 700;
    color: var(--white); line-height: 1; margin-bottom: 6px;
  }
  .stat-num span { color: var(--gold); font-size: 28px; }
  .stat-label {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px; letter-spacing: 0.15em;
    text-transform: uppercase; color: rgba(255,255,255,0.55);
  }

  /* ─── VALOR ─── */
  #valor { background: var(--light); padding: 96px 0; }
  .section-header {
    display: flex; align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 64px; gap: 32px;
  }
  .section-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(34px, 4.5vw, 52px);
    font-weight: 700; color: var(--blue);
    line-height: 1.05; letter-spacing: -0.01em; max-width: 480px;
  }
  .section-desc {
    font-size: 15px; font-weight: 300;
    line-height: 1.75; color: var(--mid);
    max-width: 380px; text-align: right;
  }
  .valor-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: var(--border);
  }
  .valor-card {
    background: var(--white); padding: 40px 36px;
    position: relative; overflow: hidden; transition: box-shadow 0.3s;
  }
  .valor-card::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px; background: var(--gold);
    transform: scaleY(0); transform-origin: bottom;
    transition: transform 0.35s ease;
  }
  .valor-card:hover::before { transform: scaleY(1); }
  .valor-card:hover { box-shadow: 0 8px 32px rgba(31,58,95,0.09); }
  .valor-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 64px; font-weight: 800;
    color: var(--border); line-height: 1; margin-bottom: 20px;
  }
  .valor-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px; font-weight: 600;
    color: var(--blue); letter-spacing: 0.02em; margin-bottom: 12px;
  }
  .valor-text { font-size: 14px; font-weight: 400; line-height: 1.75; color: var(--mid); }

  /* ─── DIFERENCIADOR ─── */
  #diferenciador {
    background: var(--blue); padding: 96px 0;
    position: relative; overflow: hidden;
  }
  .dif-accent {
    position: absolute; right: 0; top: 0; bottom: 0; width: 40%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.02));
    pointer-events: none;
  }
  .dif-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }
  .dif-quote {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(28px, 3.5vw, 42px); font-weight: 700;
    color: var(--white); line-height: 1.15; margin-bottom: 32px;
  }
  .dif-quote em { font-style: normal; color: var(--gold); }
  .dif-body {
    font-size: 15px; font-weight: 300; line-height: 1.8;
    color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 420px;
  }
  .dif-right { display: flex; flex-direction: column; gap: 1px; }
  .dif-item {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 24px 28px;
    display: flex; align-items: flex-start; gap: 20px;
    transition: background 0.25s;
  }
  .dif-item:hover { background: rgba(255,255,255,0.07); }
  .dif-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--gold); flex-shrink: 0; margin-top: 6px;
  }
  .dif-item-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px; font-weight: 600;
    color: var(--white); letter-spacing: 0.03em; margin-bottom: 4px;
  }
  .dif-item-text {
    font-size: 13px; font-weight: 300;
    line-height: 1.65; color: rgba(255,255,255,0.7);
  }

  /* ─── PILARES ─── */
  #pilares { padding: 96px 0; background: var(--white); }
  .pilares-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 2px; background: var(--border); margin-top: 64px;
  }
  .pilar {
    background: var(--white); padding: 48px 44px;
    position: relative; transition: background 0.25s;
  }
  .pilar:hover { background: var(--light); }
  .pilar-index {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px; letter-spacing: 0.15em;
    color: var(--gold); margin-bottom: 24px; display: block;
  }
  .pilar-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px; font-weight: 700;
    color: var(--blue); letter-spacing: 0.01em; margin-bottom: 14px;
  }
  .pilar-text {
    font-size: 14px; font-weight: 400;
    line-height: 1.75; color: var(--mid); max-width: 380px;
  }
  .pilar-icon {
    position: absolute; right: 44px; top: 48px;
    width: 40px; height: 40px;
    border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
  }
  .pilar-icon svg { width: 18px; height: 18px; stroke: var(--blue); fill: none; stroke-width: 1.5; }

  /* ─── TERRITORIO ─── */
  #territorio {
    background: var(--light); padding: 80px 0;
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  }
  .territorio-inner { display: flex; align-items: center; gap: 80px; }
  .territorio-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 13px; font-weight: 600;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--blue); margin-bottom: 12px;
  }
  .territorio-sub {
    font-size: 14px; font-weight: 300;
    color: var(--mid); line-height: 1.6; max-width: 200px;
  }
  .territorio-tags { display: flex; flex-wrap: wrap; gap: 8px; }
  .tag {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--blue); border: 1px solid rgba(31,58,95,0.3);
    padding: 8px 16px; background: var(--white);
    transition: background 0.2s, color 0.2s;
  }
  .tag:hover { background: var(--blue); color: var(--white); }

  /* ─── CTA ─── */
  #contacto { background: var(--white); padding: 120px 0; }
  .cta-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: end;
  }
  .cta-h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(38px, 5vw, 60px); font-weight: 800;
    color: var(--blue); line-height: 1;
    letter-spacing: -0.01em; margin-bottom: 20px;
  }
  .cta-h2 span { color: var(--gold); }
  .cta-body {
    font-size: 15px; font-weight: 300;
    line-height: 1.75; color: var(--mid); max-width: 420px;
  }
  .cta-right {
    background: var(--light); border: 1px solid var(--border); padding: 44px;
  }
  .form-group { margin-bottom: 20px; }
  .form-group label {
    display: block;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--mid); margin-bottom: 8px;
  }
  .form-group input,
  .form-group textarea,
  .form-group select {
    width: 100%; background: var(--white);
    border: 1px solid var(--border);
    padding: 12px 16px;
    font-family: 'IBM Plex Sans', sans-serif;
    font-size: 14px; color: var(--steel);
    outline: none; transition: border-color 0.2s; appearance: none;
  }
  .form-group input:focus,
  .form-group textarea:focus,
  .form-group select:focus { border-color: var(--blue); }
  .form-group textarea { resize: vertical; min-height: 90px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .btn-submit {
    width: 100%; background: var(--gold); color: var(--white);
    border: none; padding: 16px 32px;
    font-family: 'IBM Plex Mono', monospace;
    font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
    cursor: pointer; transition: background 0.2s; margin-top: 4px;
  }
  .btn-submit:hover { background: var(--gold-dk); }

  /* ─── FOOTER ─── */
  footer {
    background: var(--blue-dk); padding: 40px 0;
    border-top: 3px solid var(--gold);
  }
  .footer-inner { display: flex; align-items: center; justify-content: space-between; }
  .footer-logo {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px; font-weight: 700;
    letter-spacing: 0.06em; color: var(--white);
  }
  .footer-logo span { color: var(--gold); }
  .footer-tagline {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 11px; letter-spacing: 0.15em;
    text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 6px;
  }
  .footer-right {
    text-align: right; font-size: 12px;
    color: rgba(255,255,255,0.55); font-family: 'IBM Plex Mono', monospace;
  }

  /* ─── REVEAL ─── */
  .reveal {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .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.3s; }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ─── HAMBURGER ─── */
  .nav-toggle {
    display: none;
    background: none; border: none; cursor: pointer;
    width: 32px; height: 32px;
    flex-direction: column; justify-content: center; align-items: center; gap: 5px;
    padding: 0;
  }
  .nav-toggle span {
    display: block; width: 22px; height: 2px;
    background: var(--steel); transition: transform 0.3s, opacity 0.3s;
  }
  .nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ─── RESPONSIVE: TABLET ─── */
  @media (max-width: 1024px) {
    .valor-grid { grid-template-columns: repeat(2, 1fr); }
    .dif-inner { grid-template-columns: 1fr; gap: 48px; }
    .cta-inner { grid-template-columns: 1fr; gap: 48px; }
    .territorio-inner { flex-direction: column; gap: 32px; align-items: flex-start; }
    .territorio-sub { max-width: 100%; }
    .section-header { flex-direction: column; align-items: flex-start; }
    .section-desc { text-align: left; max-width: 100%; }
  }

  /* ─── RESPONSIVE: MOBILE ─── */
  @media (max-width: 768px) {
    .container { padding: 0 16px; }

    /* Nav */
    .nav-toggle { display: flex; }
    .nav-links {
      display: none;
      position: absolute; top: 68px; left: 0; right: 0;
      flex-direction: column; gap: 0;
      background: var(--white);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 8px 24px rgba(0,0,0,0.08);
      padding: 16px 0;
    }
    .nav-links.open { display: flex; }
    .nav-links a {
      padding: 12px 24px;
      font-size: 12px;
    }
    .nav-cta {
      margin: 8px 24px 0;
      text-align: center;
      display: block;
    }

    /* Hero */
    #hero { min-height: auto; padding-top: 68px; }
    .hero-content { padding: 56px 0 48px; }
    .hero-sub { font-size: 15px; }
    .hero-actions { flex-direction: column; align-items: flex-start; gap: 16px; }
    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 24px 0; }
    .hero-stat { padding: 0 12px 0 0; }
    .stat-num { font-size: 32px; }
    .stat-num span { font-size: 20px; }
    .stat-label { font-size: 11px; }

    /* Valor */
    #valor { padding: 64px 0; }
    .valor-grid { grid-template-columns: 1fr; }
    .valor-card { padding: 28px 24px; }
    .valor-num { font-size: 48px; }

    /* Diferenciador */
    #diferenciador { padding: 64px 0; }
    .dif-inner { grid-template-columns: 1fr; gap: 36px; }

    /* Pilares */
    #pilares { padding: 64px 0; }
    .pilares-grid { grid-template-columns: 1fr; margin-top: 40px; }
    .pilar { padding: 32px 24px; }
    .pilar-icon { position: static; margin-bottom: 16px; }

    /* Territorio */
    #territorio { padding: 48px 0; }

    /* Contacto */
    #contacto { padding: 64px 0; }
    .cta-inner { grid-template-columns: 1fr; gap: 36px; }
    .cta-right { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }

    /* Footer */
    .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
    .footer-right { text-align: center; }
  }

  /* ─── RESPONSIVE: SMALL MOBILE ─── */
  @media (max-width: 400px) {
    .hero-stats { grid-template-columns: 1fr; gap: 20px; }
    .hero-stat { padding: 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 16px; }
    .hero-stat:last-child { border-bottom: none; padding-bottom: 0; }
  }

  /* ═══════════════════════════════════════
     BLOG
     ═══════════════════════════════════════ */

  /* ─── BLOG HEADER ─── */
  .blog-header {
    background: var(--blue); padding: 140px 0 64px; position: relative; overflow: hidden;
  }
  .blog-header .hero-grid-bg { position: absolute; inset: 0; opacity: 0.04;
    background-image: linear-gradient(var(--white) 1px, transparent 1px), linear-gradient(90deg, var(--white) 1px, transparent 1px);
    background-size: 48px 48px; pointer-events: none;
  }
  .blog-header .container { position: relative; z-index: 2; }
  .blog-breadcrumb {
    font-family: 'IBM Plex Mono', monospace; font-size: 11px;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: rgba(255,255,255,0.55); margin-bottom: 24px;
  }
  .blog-breadcrumb a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color 0.2s; }
  .blog-breadcrumb a:hover { color: var(--white); }
  .blog-header-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(38px, 5vw, 60px); font-weight: 800;
    color: var(--white); line-height: 1.05; max-width: 720px;
  }
  .blog-header-title em { font-style: normal; color: var(--gold); }
  .blog-header-desc {
    font-size: 16px; font-weight: 300; line-height: 1.7;
    color: rgba(255,255,255,0.75); max-width: 540px; margin-top: 20px;
  }

  /* ─── BLOG GRID (LISTADO) ─── */
  .blog-listing { padding: 80px 0; background: var(--light); }
  .blog-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px; background: var(--border);
  }
  .blog-card {
    background: var(--white); display: flex; flex-direction: column;
    position: relative; overflow: hidden; transition: box-shadow 0.3s;
  }
  .blog-card::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px; background: var(--gold);
    transform: scaleY(0); transform-origin: bottom;
    transition: transform 0.35s ease; z-index: 2;
  }
  .blog-card:hover::before { transform: scaleY(1); }
  .blog-card:hover { box-shadow: 0 8px 32px rgba(31,58,95,0.09); }
  .blog-card a { text-decoration: none; color: inherit; display: flex; flex-direction: column; height: 100%; }
  .blog-card-img {
    width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block;
  }
  .blog-card-body { padding: 28px 32px; flex: 1; display: flex; flex-direction: column; }
  .blog-card-date {
    font-family: 'IBM Plex Mono', monospace; font-size: 11px;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 12px;
  }
  .blog-card-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px; font-weight: 700; color: var(--blue);
    line-height: 1.2; letter-spacing: 0.01em; margin-bottom: 12px;
  }
  .blog-card-excerpt {
    font-size: 14px; font-weight: 400; line-height: 1.75;
    color: var(--mid); flex: 1;
  }
  .blog-card-tags { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 6px; }
  .blog-card-tags .tag { padding: 5px 10px; font-size: 11px; pointer-events: none; }

  /* ─── POST INDIVIDUAL ─── */
  .post-meta {
    display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
    margin-top: 20px;
  }
  .post-meta-item {
    font-family: 'IBM Plex Mono', monospace; font-size: 11px;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: rgba(255,255,255,0.65);
  }
  .post-meta-divider { width: 1px; height: 14px; background: rgba(255,255,255,0.2); }
  .post-cover {
    width: 100%; max-height: 480px; object-fit: cover; display: block;
    border-bottom: 3px solid var(--gold);
  }

  /* ─── POST CONTENT (PROSA) ─── */
  .post-content {
    padding: 64px 0 80px;
  }
  .post-content .container { max-width: 760px; }
  .post-content h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 30px; font-weight: 700; color: var(--blue);
    line-height: 1.15; margin: 48px 0 16px; letter-spacing: -0.01em;
  }
  .post-content h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 22px; font-weight: 600; color: var(--blue);
    line-height: 1.2; margin: 36px 0 12px;
  }
  .post-content p {
    font-size: 16px; font-weight: 400; line-height: 1.85;
    color: var(--steel); margin-bottom: 20px;
  }
  .post-content ul, .post-content ol {
    margin: 16px 0 24px 24px;
    font-size: 16px; line-height: 1.85; color: var(--steel);
  }
  .post-content li { margin-bottom: 8px; }
  .post-content blockquote {
    border-left: 3px solid var(--gold);
    padding: 16px 24px; margin: 32px 0;
    background: var(--light);
  }
  .post-content blockquote p {
    font-size: 15px; font-weight: 400; font-style: italic;
    color: var(--mid); margin-bottom: 0;
  }
  .post-content img {
    width: 100%; height: auto; display: block;
    margin: 32px 0; border: 1px solid var(--border);
  }
  .post-content figcaption {
    font-family: 'IBM Plex Mono', monospace; font-size: 11px;
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--mid); text-align: center; margin-top: -24px; margin-bottom: 32px;
  }
  .post-content strong { font-weight: 600; color: var(--blue); }
  .post-content a { color: var(--gold-dk); text-decoration: underline; transition: color 0.2s; }
  .post-content a:hover { color: var(--gold); }

  /* ─── POST CTA ─── */
  .post-cta {
    background: var(--blue); padding: 64px 0; text-align: center;
  }
  .post-cta-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(28px, 3.5vw, 40px); font-weight: 700;
    color: var(--white); margin-bottom: 16px;
  }
  .post-cta-title span { color: var(--gold); }
  .post-cta-text {
    font-size: 15px; font-weight: 300; line-height: 1.7;
    color: rgba(255,255,255,0.75); max-width: 480px; margin: 0 auto 32px;
  }

  /* ─── POST NAV ─── */
  .post-back {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'IBM Plex Mono', monospace; font-size: 11px;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--mid); text-decoration: none; transition: color 0.2s;
    padding: 32px 0;
  }
  .post-back:hover { color: var(--blue); }

  /* ─── BLOG RESPONSIVE ─── */
  @media (max-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 768px) {
    .blog-header { padding: 100px 0 48px; }
    .blog-grid { grid-template-columns: 1fr; }
    .blog-card-body { padding: 20px; }
    .post-content { padding: 40px 0 56px; }
    .post-content h2 { font-size: 26px; margin-top: 36px; }
    .post-cta { padding: 48px 0; }
  }
