/* Small editorial captions use the restaurant's existing serif face. */
.hero-note,
.hero-subbrand {
  color: #fff;
  font-family: var(--serif);
  font-weight: 400;
  font-synthesis: none;
  text-shadow: none;
  isolation: isolate;
}
.hero-subbrand {
  font-size: clamp(10px, .85vw, 14px);
  letter-spacing: .2em;
  line-height: 1.4;
}
.hero-note {
  font-size: clamp(12px, 1vw, 15px);
  letter-spacing: .015em;
  line-height: 1.4;
  text-transform: none;
  padding-bottom: 0;
}
.hero-note::before,
.hero-subbrand::before {
  content: "";
  position: absolute;
  inset: -20px -24px;
  z-index: -1;
  background: rgba(14, 13, 11, .66);
  filter: blur(20px);
  pointer-events: none;
}
.hero-note::after { content: none; }
