:root {
  --nlc-ink: #2e1f14;
  --nlc-ivory: #f5f0e0;
  --nlc-paper: #fcf9f4;
  --nlc-olive: #575c33;
  --nlc-olive-soft: #586b3a;
  --nlc-footer: #2b2115;
  --nlc-line: rgba(46, 31, 20, 0.18);
}

* { box-sizing: border-box; }

body.nlc-coffee-article {
  --nlc-article-accent: var(--nlc-olive);
  --nlc-article-accent-ink: #f8f2eb;
  margin: 0;
  overflow-x: clip;
  color: var(--nlc-ink);
  background: var(--nlc-ivory);
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.nlc-article-skip {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 30;
  padding: 10px 14px;
  color: var(--nlc-paper);
  background: var(--nlc-ink);
}

.nlc-article-skip:focus { top: 16px; }
.nlc-article-shell { min-height: 100vh; }

.nlc-article-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 68px;
  padding: 0 20px;
  border-bottom: 1px solid var(--nlc-line);
  background: var(--nlc-ivory);
}

.nlc-article-header a {
  color: inherit;
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.nlc-article-header nav { display: flex; flex: 0 0 auto; align-items: center; gap: 18px; }
.nlc-article-location { min-width: 0; max-width: 58%; overflow-wrap: anywhere; }
.nlc-article-back {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 7px;
}

.nlc-article-back span { font-size: 15px; line-height: 1; }
.nlc-article-back:focus-visible {
  outline: 3px solid var(--nlc-olive-soft);
  outline-offset: 4px;
}

.nlc-article-hero {
  padding: 74px 20px 68px;
  background: var(--nlc-article-accent);
  color: var(--nlc-article-accent-ink);
}

.nlc-article-eyebrow,
.nlc-article-next > p {
  margin: 0 0 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.nlc-article-hero h1 {
  width: 100%;
  max-width: 880px;
  margin: 0;
  font-size: clamp(40px, 11vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  overflow-wrap: anywhere;
}

.nlc-article-summary {
  width: 100%;
  max-width: 680px;
  margin: 32px 0 0;
  font-size: 16px;
  line-height: 1.7;
  overflow-wrap: anywhere;
}

.nlc-article-content {
  width: min(100% - 40px, 720px);
  margin: 0 auto;
  padding: 64px 0 86px;
  font-size: 16px;
  line-height: 1.85;
  overflow-wrap: anywhere;
}

.nlc-article-content > :first-child { margin-top: 0; }

.nlc-article-content h2,
.nlc-article-content h3,
.nlc-article-content h4 {
  margin: 56px 0 18px;
  line-height: 1.18;
  letter-spacing: -0.035em;
}

.nlc-article-content h2 { font-size: 32px; }
.nlc-article-content h3 { font-size: 27px; }
.nlc-article-content h4 { font-size: 22px; }
.nlc-article-content p { margin: 0 0 22px; }

.nlc-article-content blockquote {
  margin: 0 0 48px;
  padding: 24px 0 24px 22px;
  border-left: 5px solid var(--nlc-olive-soft);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.55;
}

.nlc-article-content ol,
.nlc-article-content ul { padding-left: 22px; }
.nlc-article-content li { margin: 0 0 14px; }
.nlc-article-content a { color: var(--nlc-olive-soft); }
.nlc-article-content hr { margin: 64px 0 42px; border: 0; border-top: 1px solid var(--nlc-line); }

.nlc-article-end-nav {
  width: min(100% - 40px, 720px);
  margin: 0 auto;
  padding: 0 0 72px;
}

.nlc-article-back--end {
  display: flex;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 18px;
  border: 1px solid var(--nlc-line);
  color: inherit;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
}

.nlc-article-next {
  padding: 64px 20px 72px;
  color: var(--nlc-paper);
  background: var(--nlc-ink);
}

.nlc-article-next h2 {
  max-width: 760px;
  margin: 0 0 38px;
  font-size: clamp(34px, 9vw, 64px);
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.nlc-article-next div { display: grid; gap: 12px; }

.nlc-article-next a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.25);
  color: inherit;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
}

.nlc-article-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 34px 20px;
  color: var(--nlc-paper);
  border-top: 1px solid rgba(248, 242, 235, 0.14);
  background: var(--nlc-footer);
  font-size: 11px;
  letter-spacing: .08em;
}

@media (min-width: 768px) {
  .nlc-article-header,
  .nlc-article-hero,
  .nlc-article-next,
  .nlc-article-footer {
    padding-left: max(48px, calc((100vw - 1180px) / 2));
    padding-right: max(48px, calc((100vw - 1180px) / 2));
  }
  .nlc-article-hero { padding-top: 112px; padding-bottom: 104px; }
  .nlc-article-content { padding-top: 92px; padding-bottom: 112px; font-size: 17px; }
  .nlc-article-end-nav { padding-bottom: 96px; }
  .nlc-article-next { padding-top: 92px; padding-bottom: 96px; }
  .nlc-article-next div { max-width: 760px; grid-template-columns: 1fr 1fr; }
  .nlc-article-footer { flex-direction: row; justify-content: space-between; }
}
