:root {
  --navy: #061f42;
  --navy-deep: #03152e;
  --turquoise: #009eac;
  --turquoise-text: #007782;
  --turquoise-bright: #00bbc6;
  --pale: #eaf7f7;
  --paper: #f6f8f7;
  --white: #fff;
  --ink: #071a31;
  --muted: #596a7a;
  --line: rgba(6, 31, 66, 0.18);
  --serif: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", serif;
  --sans: "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  letter-spacing: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 11px 15px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-180%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

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

button {
  font: inherit;
}

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  padding: 9px;
  color: currentColor;
  background: transparent;
  border: 1px solid currentColor;
}

.menu-button span {
  display: block;
  height: 1px;
  margin: 4px 0;
  background: currentColor;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 11px;
  width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: var(--turquoise);
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 19px;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
}

.brand-copy small {
  font-size: 10px;
  font-weight: 700;
}

.eyebrow {
  margin: 0;
  color: var(--turquoise-text);
  font-size: 11px;
  font-weight: 700;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 260px;
  padding: 15px 18px;
  color: var(--white);
  background: var(--navy);
  border: 1px solid var(--navy);
  font-size: 11px;
  font-weight: 700;
}

.arrow-link b {
  color: var(--turquoise-bright);
  font-size: 18px;
  font-weight: 400;
}

@media (max-width: 760px) {
  .menu-button {
    display: block;
  }

  .brand-mark {
    width: 35px;
    height: 35px;
    font-size: 17px;
  }

  .brand-copy strong {
    font-size: 18px;
  }
}
