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

  :root {
    --paper: #FFFDF7;
    --cream: #FFF1D8;
    --butter: #FFD76A;
    --tomato: #E9552E;
    --tomato-dark: #B63A21;
    --herb: #2F7B57;
    --mint: #D8F0D2;
    --sky: #DDF1FF;
    --ink: #1B1814;
    --muted: #6B6258;
    --line: #E9DDC8;
    --white: #FFFFFF;
  }

  html { scroll-behavior: smooth; }

  body {
    background: var(--paper);
    color: var(--ink);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.6;
  }

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

  nav {
    position: sticky;
    top: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-height: 76px;
    padding: 18px clamp(20px, 5vw, 72px);
    background: rgba(255, 253, 247, 0.94);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(14px);
  }

  .brand-mark {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--ink);
    text-decoration: none;
    font-weight: 800;
    letter-spacing: -0.03em;
  }

  .brand-stamp {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: var(--tomato);
    color: var(--paper);
    border: 2px solid var(--ink);
    border-radius: 50%;
    font-family: "Fraunces", serif;
    font-size: 20px;
  }

  .brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
  }

  .brand-text span:first-child { font-size: 21px; }

  .brand-text span:last-child {
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: clamp(18px, 3vw, 34px);
    list-style: none;
  }

  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .nav-links a:hover { color: var(--tomato); }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 24px;
    border: 2px solid var(--ink);
    border-radius: 999px;
    color: var(--ink);
    background: var(--white);
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    box-shadow: 4px 4px 0 var(--ink);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  }

  .btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 2px 2px 0 var(--ink);
  }

  .btn-primary { background: var(--butter); }
  .btn-tomato { background: var(--tomato); color: var(--paper); }

  .kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--tomato-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .kicker::before {
    content: "";
    width: 38px;
    height: 3px;
    background: currentColor;
  }

  .article-hero {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
    gap: clamp(32px, 5vw, 72px);
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: clamp(52px, 8vw, 96px) clamp(20px, 5vw, 72px) clamp(48px, 7vw, 82px);
  }

  h1,
  h2,
  h3 {
    font-family: "Fraunces", serif;
    letter-spacing: -0.05em;
  }

  h1 {
    max-width: 760px;
    font-size: clamp(54px, 8vw, 108px);
    line-height: 0.88;
  }

  .hero-lede {
    max-width: 610px;
    margin-top: 24px;
    color: var(--muted);
    font-size: 19px;
  }

  .article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
  }

  .pill {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 10px;
    border: 1.5px solid var(--ink);
    border-radius: 999px;
    background: var(--butter);
    color: var(--ink);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }

  .pill.green { background: var(--mint); }
  .pill.blue { background: var(--sky); }

  .photo-board {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    grid-template-rows: 230px 190px 190px;
    gap: 14px;
    min-height: 640px;
  }

  .photo-tile {
    overflow: hidden;
    border: 2px solid var(--ink);
    border-radius: 8px;
    background: var(--cream);
    box-shadow: 5px 5px 0 var(--ink);
  }

  .photo-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .photo-main {
    grid-row: span 2;
  }

  .photo-wide {
    grid-column: 1 / -1;
  }

  .article-band {
    border-top: 2px solid var(--ink);
    background: var(--cream);
  }

  .article-shell {
    display: grid;
    grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.9fr);
    gap: clamp(28px, 5vw, 70px);
    max-width: 1180px;
    margin: 0 auto;
    padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 72px);
  }

  .article-aside {
    position: sticky;
    top: 104px;
    align-self: start;
    display: grid;
    gap: 14px;
  }

  .aside-card {
    padding: 18px;
    border: 2px solid var(--ink);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 4px 4px 0 var(--ink);
  }

  .aside-card span {
    display: block;
    color: var(--tomato-dark);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }

  .aside-card strong {
    display: block;
    margin-top: 8px;
    font-size: 17px;
    line-height: 1.25;
  }

  .article-body {
    min-width: 0;
    padding: clamp(24px, 4vw, 44px);
    border: 2px solid var(--ink);
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 7px 7px 0 var(--ink);
  }

  .article-body p {
    color: var(--muted);
    font-size: 18px;
    line-height: 1.75;
  }

  .article-body p + p {
    margin-top: 20px;
  }

  .article-body h2 {
    margin: 42px 0 16px;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 0.96;
  }

  .lead {
    color: var(--ink) !important;
    font-size: clamp(22px, 3vw, 30px) !important;
    line-height: 1.35 !important;
    font-weight: 800;
  }

  .pull-quote {
    margin: 34px 0;
    padding: 22px;
    border: 2px solid var(--ink);
    border-radius: 8px;
    background: var(--butter);
    color: var(--ink);
    font-family: "Fraunces", serif;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1;
    letter-spacing: -0.04em;
    box-shadow: 4px 4px 0 var(--ink);
  }

  .inline-photo {
    overflow: hidden;
    margin: 34px 0;
    border: 2px solid var(--ink);
    border-radius: 8px;
    background: var(--white);
    box-shadow: 5px 5px 0 var(--ink);
  }

  .inline-photo img {
    width: 100%;
    height: clamp(260px, 42vw, 460px);
    object-fit: cover;
  }

  .inline-photo figcaption {
    padding: 12px 16px;
    border-top: 2px solid var(--ink);
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
  }

  .shopping-list {
    display: grid;
    gap: 12px;
    margin-top: 22px;
    list-style: none;
  }

  .shopping-list li {
    padding: 15px 0;
    border-top: 1px solid rgba(27, 24, 20, 0.18);
    color: var(--muted);
    font-size: 17px;
    font-weight: 650;
  }

  .shopping-list strong {
    color: var(--ink);
  }

  .article-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
    padding-top: 24px;
    border-top: 2px solid var(--line);
  }

  footer {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    padding: 42px clamp(20px, 5vw, 72px);
    background: var(--ink);
    color: var(--paper);
  }

  .footer-brand {
    font-family: "Fraunces", serif;
    font-size: 36px;
    line-height: 1;
    letter-spacing: -0.05em;
  }

  .footer-note {
    max-width: 460px;
    margin-top: 10px;
    color: rgba(255, 253, 247, 0.7);
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: start;
    list-style: none;
  }

  .footer-links a {
    color: rgba(255, 253, 247, 0.78);
    text-decoration: none;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

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

  @media (max-width: 980px) {
    .article-hero,
    .article-shell {
      grid-template-columns: 1fr;
    }

    .article-aside {
      position: static;
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  @media (max-width: 760px) {
    nav {
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      min-height: auto;
      padding: 12px 16px;
    }

    .nav-links {
      order: 3;
      width: 100%;
      justify-content: center;
      gap: 18px;
      padding-top: 10px;
      border-top: 1px solid var(--line);
    }

    .nav-links a { font-size: 11px; }

    .brand-stamp {
      width: 36px;
      height: 36px;
      font-size: 18px;
    }

    .brand-text span:first-child { font-size: 18px; }
    .brand-text span:last-child { display: none; }

    .nav-cta {
      min-height: 42px;
      padding: 9px 12px;
      font-size: 10px;
      box-shadow: 3px 3px 0 var(--ink);
    }

    .article-hero {
      padding: 34px 16px 42px;
    }

    h1 {
      font-size: clamp(46px, 16vw, 66px);
      line-height: 0.92;
    }

    .hero-lede,
    .article-body p {
      font-size: 16px;
      line-height: 1.62;
    }

    .photo-board {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(4, 220px);
      min-height: auto;
    }

    .photo-main,
    .photo-wide {
      grid-column: auto;
      grid-row: auto;
    }

    .article-shell {
      padding: 42px 16px 58px;
    }

    .article-aside {
      grid-template-columns: 1fr;
    }

    .article-body {
      padding: 20px;
    }

    .pull-quote {
      padding: 18px;
      font-size: 30px;
    }

    .article-actions .btn {
      width: 100%;
    }

    footer {
      grid-template-columns: 1fr;
      padding: 34px 16px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .btn { transition: none; }
  }
