* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f5f5f5;
  color: #6f6f6f;
  line-height: 1.2;
  user-select: none;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: rgb(172, 53, 74);
}

.page {
  min-height: 100vh;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.topbar {
  display: grid;
  grid-template-columns: 0.3fr 1fr 1fr;
  align-items: start;
  gap: 24px;
  font-size: 13px;
}

.brand {
  color: #3e3e3e;
}

.intro {
  max-width: 180px;
}

.nav {
  justify-self: end;
  display: flex;
  gap: 12px;
}

.globe-wrapper {
  position: relative;
  justify-self: end;
}

#globe {
  width: 128px;
  height: 128px;
  display: block;
  cursor: grab;
  user-select: auto;
  touch-action: none;
}

#globe:active {
  cursor: grabbing;
}

.marker-label {
  position: absolute;
  position-anchor: var(--label-anchor);
  bottom: anchor(top);
  left: anchor(center);
  translate: -50% 0;
  margin-bottom: 6px;
  padding: 3px 5px 2px 5px;
  background: rgb(172, 53, 74);
  color: #fff;
  font-size: 9px;
  font-family: Arial, Helvetica, sans-serif;
  border-radius: 3px;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.3s;
}

.section {
  display: grid;
  grid-template-columns: 0.3fr 1fr 1fr;
  gap: 24px;
  min-height: 100px;
  padding-top: 40px;
}

.section--hero {
  padding-top: 190px;
  min-height: 260px;
}

.section-label {
  font-size: 13px;
  color: #9a9a9a;
}

.section-content {
  font-size: 13px;
  color: #4c4c4c;
}

.hero-copy {
  max-width: 480px;
}

.hero-copy p {
  margin: 0 0 8px;
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 220px;
}

.list li {
  margin: 0 0 4px;
  cursor: default;
  transition: color 0.2s ease;
}

.item-meta {
  display: block;
  color: #9a9a9a;
  font-size: 12px;
  margin-top: 1px;
  padding-bottom: 12px;
}

.section-content strong {
  font-weight: 400;
  color: #2f2f2f;
}

@media (max-width: 800px) {
  body {
    line-height: 1.5;
  }

  .topbar {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 2px;
  }

  .topbar .brand {
    grid-column: 1;
    grid-row: 1;
  }

  .topbar .intro {
    grid-column: 1;
    grid-row: 2;
  }

  .globe-wrapper {
    grid-column: 2;
    grid-row: 1 / 3;
    align-self: center;
  }

  #globe {
    width: 80px;
    height: 80px;
  }

  .section {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .nav {
    justify-self: start;
  }

  .section {
    padding-top: 34px;
    min-height: auto;
  }

  .section--hero {
    padding-top: 64px;
  }

  .page {
    padding: 18px;
  }
}
