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

  body {
    background-color: #f5f1eb;
    color: #1a1a1a;
    font-family: "Roboto Condensed", sans-serif;
  }

  header {
    background-color: #222222;
  }

  /* ── HERO IMAGE ── */
  .post-hero {
    width: 100%;
    height: 62vh;
    min-height: 360px;
    max-height: 580px;
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
    margin-top: 0;
  }

  .post-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.7;
  }

  .post-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%);
  }

  .post-hero-meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 48px 6vw 40px;
    color: #fff;
  }

  .post-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    background-color: white;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #cb764e;
    margin-bottom: 14px;
    border: 1px solid #cb764e;
    padding: 4px 12px;
  }

  .post-hero-meta h1 {
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    line-height: 1.08;
    font-weight: bold;
    max-width: 900px;
    margin-bottom: 16px;
  }

  .post-byline {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.65);
  }

  .post-byline .dot { color: #a85a3e; }

  /* ── BACK LINK ── */
  .back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #a85a3e;
    text-decoration: none;
    padding: 22px 6vw;
    display: block;
    transition: gap 0.2s;
  }

  .back-link:hover { color: #cb764e; }

  /* ── ARTICLE BODY ── */
  .post-article {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2vw 100px;
  }

  @media (max-width: 768px) {
    .post-article {
      padding: 0 5vw 100px;
    }
  }

  .post-content {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #2e2820;
    font-weight: 300;
  }

  .post-content p {
    margin-bottom: 1.5em;
  }

  .post-content h2 {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 2.2rem;
    font-weight: bold;
    color: #1a1a1a;
    margin: 1em 0 0.75em;
    line-height: 1.2;
  }

  .post-content h3 {
    font-family: 'Barrio', Arial, sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #1a1a1a;
    margin: 2em 0 0.6em;
  }

  @media (max-width: 768px) {
    .post-content h3 {
        font-size: 1.2rem;
    }
  }


  .post-content blockquote {
    border-left: 3px solid #a85a3e;
    padding: 16px 24px;
    margin: 2em 0;
    background: rgba(168,90,62,0.06);
    font-size: 1.05em;
    color: #5a5047;
    font-style: italic;
  }

  .post-content a {
    color: #a85a3e;
    text-decoration: underline;
    font-weight: 600;
    text-underline-offset: 3px;
  }

  .post-content ul, .post-content ol {
    padding-left: 1.5em;
    margin-bottom: 1.5em;
  }

  .post-content li { margin-bottom: 0.5em; margin-top: 0.5em }

  /* -- IMAGES -- */

  img {
    max-width: 100%;
    padding: 2vw 7vw 2vw 3vw;
    height: auto;
  }

  @media (max-width: 768px) {
    img {
      padding: 0;
    }
  }

  /* ── TAGS ── */
  .post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 56px;
    padding-top: 32px;
    border-top: 1px solid #e2ddd6;
  }

  .post-tags span {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9e9088;
    padding: 5px 14px;
    border: 1px solid #e2ddd6;
  }

  /* ── MORE POSTS ── */
  .more-posts-section {
    background: #1a1a1a;
    padding: 72px 6vw;
    border-top: 3px solid #a85a3e;
  }

  .more-posts-section h2 {
    font-family: 'Barrio', Arial, sans-serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 36px;
    font-weight: 400;
  }

  .more-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1280px;
    margin: 0 auto;
  }

  @media (max-width: 900px) { .more-posts-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 560px) { .more-posts-grid { grid-template-columns: 1fr; } }

  .mini-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 24px;
    text-decoration: none;
    color: #fff;
    display: block;
    transition: background 0.2s, transform 0.2s;
  }

  .mini-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
  }

  .mini-card .mini-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #cb764e;
    margin-bottom: 10px;
    display: block;
  }

  .mini-card h3 {
    font-family: 'Barrio', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 10px;
  }

  .mini-card .mini-date {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  /* ── FOOTER ── */
  .site-footer {
    background-color: #111;
    padding: 36px 6vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    border-top: 3px solid #a85a3e;
  }

  .site-footer .footer-brand {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 0.85em;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .site-footer .footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

  .site-footer .footer-links a {
    font-family: "Roboto Condensed", sans-serif;
    font-size: 0.85em;
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s;
    letter-spacing: 0.05em;
  }

  .site-footer .footer-links a:hover { color: #cb764e; }

  /* Loading / error */
  .post-error {
    text-align: center;
    padding: 120px 20px;
    font-family: 'Barrio', sans-serif;
    font-size: 2rem;
    color: #c9c0b4;
  }
