/* News Gothic is the design reference.
   This stack uses system grotesques until a licensed News Gothic webfont is supplied. */
:root {
  --red: #b7472d;
  --black: #202020;
  --muted: #404040;
}
* { box-sizing: border-box; }
html { background: #fff; }
body {
  margin: 0;
  color: var(--black);
  font-family: "News Gothic", "NewsGothic", "Arial Narrow", Arial, Helvetica, sans-serif;
  font-size: 18px;
  line-height: 1.32;
  letter-spacing: .015em;
}
.page {
  width: min(760px, calc(100% - 48px));
  margin: 70px auto 90px;
}
.identity {
  position: relative;
  display: flex;
  gap: 26px;
  align-items: flex-start;
  margin-bottom: 64px;
}
.needle {
  width: 30px;
  height: 180px;
  position: relative;
  flex: 0 0 30px;
}
.ring {
  position: absolute;
  width: 14px; height: 14px;
  border: 2px solid var(--black);
  border-radius: 50%;
  left: 8px; top: 0;
}
.shaft {
  position: absolute;
  width: 2px; height: 137px;
  background: var(--black);
  left: 14px; top: 14px;
}
.shaft::after {
  content:"";
  position:absolute; left:-2px; bottom:-11px;
  border-left:3px solid transparent;
  border-right:3px solid transparent;
  border-top:12px solid var(--black);
}
.dot { position:absolute; border-radius:50%; left:8px; }
.dot.black { width:11px; height:11px; top:158px; background:#282828; left:10px; }
.dot.red { width:18px; height:18px; top:178px; background:var(--red); left:6px; }
.brand {
  font-weight: 700;
  font-size: 38px;
  line-height: .95;
  letter-spacing: .015em;
  margin-top: 7px;
}
.brand span { color: var(--red); }
.tagline {
  font-weight: 700;
  font-size: 21px;
  margin-top: 7px;
  letter-spacing: .025em;
}
section { margin-left: 56px; max-width: 650px; }
.intro { margin-top: 0; }
h1 {
  font-size: 24px;
  margin: 0 0 1px;
  font-weight: 700;
}
.credentials, .intro p { margin: 0; }
.about {
  margin-top: 70px;
  border-top: 1px solid #d7d7d7;
  padding-top: 32px;
}
h2 {
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 20px;
  font-weight: 700;
}
.about p { max-width: 610px; margin: 0 0 18px; }
.contact {
  margin-top: 55px;
  padding-top: 28px;
  border-top: 1px solid #d7d7d7;
}
.contact h2 { margin-bottom: 7px; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }

@media (max-width: 600px) {
  body { font-size: 16px; }
  .page { width: calc(100% - 34px); margin: 38px auto 60px; }
  .identity { gap: 18px; margin-bottom: 52px; }
  .brand { font-size: 32px; }
  .tagline { font-size: 16px; max-width: 280px; }
  section { margin-left: 48px; }
  h1 { font-size: 20px; }
  h2 { font-size: 18px; }
  .about { margin-top: 60px; }
  .desktop-break { display:none; }
}
