
  :root {
    --navy: #0a1628;
    --navy-light: #142038;
    --ivory: #f7f3ec;
    --ivory-dark: #ede8df;
    --gold: #b8965a;
    --gold-muted: #c9a96c;
    --text-primary: #0a1628;
    --text-secondary: #4a5568;
    --text-light: #8a9ab5;
    --white: #ffffff;
    --serif: 'Playfair Display', Georgia, serif;
    --sans: 'DM Sans', -apple-system, sans-serif;
  }

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

  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }

  body {
    font-family: var(--sans);
    color: var(--text-primary);
    background: var(--ivory);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
  }

  ::selection {
    background: var(--gold);
    color: var(--white);
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  nav.scrolled {
    background: rgba(247, 243, 236, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 1rem 4rem;
    box-shadow: 0 1px 0 rgba(10, 22, 40, 0.06);
  }

  .nav-logo {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: -0.005em;
    color: var(--navy);
    text-decoration: none;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-links a:hover { color: var(--navy); }
  .nav-links a:hover::after { width: 100%; }

  /* ── SECTIONS ── */
  section { position: relative; }

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

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 150, 90, 0.06) 0%, transparent 70%);
    pointer-events: none;
  }

  .hero-content {
    position: relative;
    z-index: 2;
  }

  .hero-eyebrow {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
  }

  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--gold-muted);
  }

  .hero-sub {
    font-family: var(--sans);
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 520px;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
  }

  .hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid var(--gold);
    transition: all 0.3s;
    opacity: 0;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.8s forwards;
  }

  .hero-cta:hover {
    color: var(--gold);
    gap: 1.1rem;
  }

  .hero-cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
  }

  .hero-cta:hover svg { transform: translateX(4px); }

  .hero-scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.2s forwards;
  }

  .scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }

  .scroll-text {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
    writing-mode: vertical-rl;
  }

  /* ── ABOUT ── */
  .about {
    padding: 10rem 0;
    background: var(--navy);
    color: var(--ivory);
    position: relative;
    overflow: hidden;
  }

  .about::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(184, 150, 90, 0.04) 0%, transparent 70%);
    pointer-events: none;
  }

  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    align-items: start;
  }

  .about-left {
    position: sticky;
    top: 6rem;
  }

  .about-label {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 2rem;
  }

  .about-photo {
    width: 180px;
    position: relative;
  }

  .about-photo::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 1px solid rgba(184, 150, 90, 0.25);
  }

  .about-photo img {
    display: block;
    width: 100%;
    height: auto;
    filter: grayscale(15%);
    transition: filter 0.4s;
  }

  .about-photo:hover img {
    filter: grayscale(0%);
  }

  .about-content p {
    font-family: var(--sans);
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.85;
    color: rgba(247, 243, 236, 0.8);
    margin-bottom: 1.8rem;
  }

  .about-content p strong {
    color: var(--ivory);
    font-weight: 500;
  }

  .about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(247, 243, 236, 0.08);
  }

  .stat-number {
    font-family: var(--serif);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }

  .stat-label {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: rgba(247, 243, 236, 0.5);
    text-transform: uppercase;
  }

  /* ── FOCUS AREAS ── */
  .services {
    padding: 10rem 0;
    background: var(--ivory);
  }

  .services-header {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    margin-bottom: 5rem;
  }

  .section-label {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
  }

  .services-intro {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    line-height: 1.35;
    color: var(--navy);
  }

  .services-intro em {
    font-style: italic;
    color: var(--gold-muted);
  }

  .service-card {
    background: var(--white);
    border: 1px solid rgba(10, 22, 40, 0.06);
    padding: 4rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
  }

  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: var(--gold);
    transition: height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .service-card:hover { border-color: rgba(184, 150, 90, 0.2); }
  .service-card:hover::before { height: 100%; }

  .service-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
  }

  .service-number {
    font-family: var(--serif);
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 400;
  }

  .service-card h3 {
    font-family: var(--serif);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 1.2rem;
  }

  .service-card p {
    font-family: var(--sans);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2rem;
  }

  .service-deliverables {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .deliverable-tag {
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.45rem 1rem;
    background: var(--ivory);
    color: var(--text-secondary);
    border: 1px solid rgba(10, 22, 40, 0.06);
  }

  /* ── TRACK RECORD ── */
  .results {
    padding: 10rem 0;
    background: var(--navy);
    color: var(--ivory);
  }

  .results-header {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    margin-bottom: 5rem;
  }

  .results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .result-card {
    border: 1px solid rgba(247, 243, 236, 0.08);
    padding: 3rem;
    transition: all 0.3s;
    position: relative;
  }

  .result-card:hover {
    border-color: rgba(184, 150, 90, 0.25);
    background: rgba(247, 243, 236, 0.02);
  }

  .result-icon {
    font-family: var(--serif);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 1.2rem;
    line-height: 1;
  }

  .result-title {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--ivory);
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .result-description {
    font-family: var(--sans);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(247, 243, 236, 0.65);
  }

  .result-context {
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(247, 243, 236, 0.3);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(247, 243, 236, 0.06);
  }

  /* ── THINKING ── */
  .thinking {
    padding: 10rem 0;
    background: var(--ivory);
  }

  .thinking-header {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    margin-bottom: 5rem;
  }

  .thinking-intro {
    font-family: var(--serif);
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    line-height: 1.35;
    color: var(--navy);
  }

  .thinking-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .thinking-card {
    padding: 2.5rem;
    border: 1px solid rgba(10, 22, 40, 0.06);
    background: var(--white);
    transition: all 0.3s;
    cursor: default;
  }

  .thinking-card:hover {
    border-color: rgba(184, 150, 90, 0.2);
  }

  .thinking-category {
    font-family: var(--sans);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.2rem;
  }

  .thinking-card h4 {
    font-family: var(--serif);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 0.8rem;
    line-height: 1.35;
  }

  .thinking-card p {
    font-family: var(--sans);
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.65;
    color: var(--text-secondary);
  }

  /* ── CONTACT ── */
  .contact {
    padding: 10rem 0 6rem;
    background: var(--ivory);
    text-align: center;
    position: relative;
  }

  .contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--gold));
  }

  .contact h2 {
    font-family: var(--serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--navy);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
  }

  .contact h2 em {
    font-style: italic;
    color: var(--gold-muted);
  }

  .contact-sub {
    font-family: var(--sans);
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
  }

  .contact-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 6rem;
  }

  .contact-link {
    font-family: var(--sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--navy);
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--gold);
    transition: all 0.3s;
  }

  .contact-link:hover { color: var(--gold); }

  /* ── FOOTER ── */
  footer {
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(10, 22, 40, 0.06);
  }

  .footer-text {
    font-size: 0.72rem;
    color: var(--text-light);
    letter-spacing: 0.05em;
  }

  .footer-links {
    display: flex;
    gap: 2rem;
  }

  .footer-links a {
    font-size: 0.72rem;
    color: var(--text-light);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s;
  }

  .footer-links a:hover { color: var(--navy); }

  /* ── HAMBURGER ── */
  .nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 101;
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 1.5px;
    background: var(--navy);
    margin: 4px 0;
    transition: all 0.3s;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
  }
  .nav-toggle.active span:nth-child(2) { opacity: 0; }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
  }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
  }

  .reveal {
    opacity: 0;
    transform: translateY(30px);
    animation: revealFallback 0.8s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards;
  }

  .reveal.visible {
    animation: none;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }

  @keyframes revealFallback {
    to { opacity: 1; transform: translateY(0); }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    .container { padding: 0 2.5rem; }
    nav { padding: 1.5rem 2.5rem; }
    nav.scrolled { padding: 1rem 2.5rem; }
    .about-grid, .services-header, .results-header, .thinking-header {
      grid-template-columns: 1fr;
      gap: 2rem;
    }
    .about-left { position: static; }
    .about-photo { width: 140px; margin-bottom: 1.5rem; }
    .results-grid { grid-template-columns: 1fr; }
    .thinking-grid { grid-template-columns: 1fr; }
    footer { padding: 2rem 2.5rem; }
    .hero-scroll-indicator { left: 2.5rem; }
  }

  @media (max-width: 768px) {
    .container { padding: 0 1.5rem; }
    nav { padding: 1.2rem 1.5rem; }
    nav.scrolled { padding: 0.8rem 1.5rem; }
    .nav-toggle { display: block; }
    .nav-links {
      display: none;
      position: fixed;
      top: 0;
      right: 0;
      width: 260px;
      height: 100vh;
      background: var(--ivory);
      flex-direction: column;
      padding: 6rem 2rem 2rem;
      gap: 1.5rem;
      box-shadow: -4px 0 20px rgba(10, 22, 40, 0.08);
    }
    .nav-links.open { display: flex; }
    .nav-links a { font-size: 0.9rem; letter-spacing: 0.08em; }
    .about, .services, .results, .thinking, .contact { padding: 5rem 0; }
    .service-card { padding: 2rem; }
    .result-card { padding: 1.8rem; }
    .about-stats { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .stat-number { font-size: 1.8rem; }
    .contact-links { flex-direction: column; align-items: center; gap: 1.5rem; }
    footer { flex-direction: column; gap: 1rem; padding: 2rem 1.5rem; }
    .hero-scroll-indicator { display: none; }
    .service-deliverables { gap: 0.4rem; }
    .deliverable-tag { font-size: 0.65rem; padding: 0.35rem 0.7rem; }
    .result-icon { font-size: 1.8rem; }
  }

  /* ================================
     Article pages (Thinking section)
     Uses shared tokens, fits inside .container
     ================================ */

  .article-page {
    padding: 9rem 0 6rem;
  }

  .article-page .article-wrap {
    max-width: 44rem;
    margin: 0 auto;
  }

  .article-crumb {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 3rem;
  }

  .article-crumb a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
  }

  .article-crumb a:hover {
    color: var(--gold);
    border-color: var(--gold);
  }

  .article-eyebrow {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
  }

  .article-title {
    font-family: var(--serif);
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 1.5rem;
  }

  .article-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--gold);
  }

  .article-meta {
    font-family: var(--sans);
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
  }

  .article-body {
    font-family: var(--sans);
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-primary);
  }

  .article-body p {
    margin-bottom: 1.5rem;
  }

  .article-body h2 {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--navy);
    margin: 3rem 0 1.25rem;
  }

  .article-body h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--navy);
    margin: 2rem 0 1rem;
  }

  .article-body strong {
    font-weight: 600;
    color: var(--navy);
  }

  .article-body em {
    font-style: italic;
  }

  .article-body a {
    color: var(--navy);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    transition: color 0.2s;
  }

  .article-body a:hover {
    color: var(--gold);
  }

  .article-body ul,
  .article-body ol {
    margin: 0 0 1.5rem 1.5rem;
  }

  .article-body li {
    margin-bottom: 0.5rem;
  }

  .article-body blockquote {
    border-left: 2px solid var(--gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-secondary);
  }

  .article-body code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.9em;
    padding: 0.1em 0.35em;
    background: rgba(10, 22, 40, 0.06);
    border-radius: 3px;
  }

  /* Thinking index list */

  .thinking-page {
    padding: 9rem 0 6rem;
  }

  .thinking-page .thinking-wrap {
    max-width: 44rem;
    margin: 0 auto;
  }

  .thinking-page .page-intro {
    font-family: var(--serif);
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin-bottom: 1.5rem;
  }

  .thinking-page .page-intro em {
    font-style: italic;
    color: var(--gold);
  }

  .thinking-page .page-lede {
    font-family: var(--sans);
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 3.5rem;
  }

  .thinking-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .thinking-list-item {
    padding: 2.5rem 0;
    border-top: 1px solid rgba(10, 22, 40, 0.08);
  }

  .thinking-list-item:last-child {
    border-bottom: 1px solid rgba(10, 22, 40, 0.08);
  }

  .thinking-list-item .thinking-list-meta {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
  }

  .thinking-list-item h2 {
    font-family: var(--serif);
    font-size: clamp(1.5rem, 2.8vw, 2rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--navy);
    margin-bottom: 0.75rem;
  }

  .thinking-list-item h2 em {
    font-style: italic;
    color: var(--gold);
  }

  .thinking-list-item h2 a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
  }

  .thinking-list-item h2 a:hover {
    color: var(--gold);
  }

  .thinking-list-item p {
    font-family: var(--sans);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--text-secondary);
  }

  @media (max-width: 768px) {
    .article-page,
    .thinking-page {
      padding: 7rem 0 4rem;
    }
    .article-meta {
      margin-bottom: 2.5rem;
    }
    .article-body h2 {
      margin: 2.25rem 0 1rem;
    }
  }
