.ceo-page:root,
html:has(> body.ceo-page) {
  overflow-x: clip;
}

.ceo-page {
  background: var(--paper);
  overflow-x: clip;
}

.ceo-page .nav-item--current > a::after {
  transform: scaleX(1);
}

.ceo-page .mega-links .is-current {
  border-color: transparent;
}

.ceo-page .mega-links .is-current::after {
  transform: scaleX(1);
}

.ceo-visual {
  position: relative;
  height: 435px;
  overflow: hidden;
  color: #fff;
  background: #071521;
}

.ceo-visual > img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 53%;
}

.ceo-visual__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 20, 31, .70) 0%, rgba(5, 20, 31, .24) 34%, rgba(5, 20, 31, .16) 58%, rgba(5, 20, 31, .64) 100%),
    linear-gradient(180deg, rgba(5, 20, 31, .24) 0%, rgba(5, 20, 31, .08) 50%, rgba(5, 20, 31, .20) 100%);
}

.ceo-visual__inner {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  padding-top: 103px;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

.ceo-visual__title p,
.ceo-message__lead > p {
  margin: 0 0 16px;
  color: #a78348;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .18em;
}

.ceo-visual__title h1 {
  margin: 0;
  color: #fff;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.045em;
}

.ceo-visual__statement {
  width: min(400px, 38vw);
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 1.8vw, 30px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -.015em;
}

.ceo-visual__statement em {
  color: #c8a86f;
  font-style: inherit;
}

.ceo-message {
  padding: 126px 0 94px;
  background: var(--paper);
}

.ceo-message__inner {
  display: grid;
  grid-template-columns: minmax(0, 40%) minmax(0, 60%);
  align-items: start;
}

.ceo-message__lead {
  padding: 4px 80px 0 0;
}

.ceo-message__lead h2 {
  margin: 0;
  color: #102a46;
  font-size: clamp(28px, 2.05vw, 36px);
  font-weight: 700;
  line-height: 1.46;
  letter-spacing: -.045em;
}

.ceo-message__lead h2 strong {
  color: #a78348;
  font-weight: 800;
}

.ceo-message__lead > span {
  display: block;
  width: 52px;
  height: 2px;
  margin-top: 36px;
  background: #a78348;
}

.ceo-message__copy {
  position: relative;
  padding-left: 78px;
}

.ceo-message__copy::before {
  position: absolute;
  top: 8px;
  bottom: 62px;
  left: 0;
  width: 1px;
  background: linear-gradient(180deg, rgba(16, 42, 70, .06), rgba(16, 42, 70, .16) 12%, rgba(16, 42, 70, .13) 84%, rgba(16, 42, 70, 0));
  content: "";
}

.ceo-message__copy > p {
  max-width: 640px;
  margin: 0 0 24px;
  color: #334b57;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: -.015em;
  word-break: keep-all;
}

.ceo-copy-keep {
  white-space: nowrap;
}

.ceo-message__copy > p:first-child {
  color: #102a46;
  font-weight: 600;
  margin-bottom: 30px;
}

.ceo-message__copy > p:nth-child(3),
.ceo-message__copy > p:nth-child(6),
.ceo-message__copy > p:nth-child(8) {
  margin-top: 32px;
}

.ceo-message__copy > p:nth-last-of-type(1) {
  margin-top: 12px;
  margin-bottom: 0;
}

.ceo-message__signature {
  width: min(640px, 100%);
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid rgba(16, 42, 70, .14);
  text-align: right;
}

.ceo-message__signature-note {
  margin: 0 0 14px;
  color: #008a28;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: -.01em;
}

.ceo-message__signature-lockup {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 14px;
}

.ceo-message__signature-mark {
  position: relative;
  display: block;
  width: 114px;
  height: 35px;
  overflow: hidden;
  flex: 0 0 114px;
}

.ceo-message__signature-mark img {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 302px;
  height: auto;
  max-width: none;
  transform: translateY(-50%);
}

.ceo-message__signature strong {
  display: block;
  white-space: nowrap;
  color: #102a46;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: -.025em;
}

.ceo-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .68s ease, transform .68s cubic-bezier(.2, .7, .2, 1);
}

.ceo-reveal--delay {
  transition-delay: .12s;
}

.ceo-reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .ceo-message__lead {
    padding-right: 48px;
  }

  .ceo-message__copy {
    padding-left: 48px;
  }
}

@media (max-width: 800px) {
  .ceo-copy-break {
    display: none;
  }

  .ceo-visual {
    height: 390px;
  }

  .ceo-visual > img {
    object-position: 56% center;
  }

  .ceo-visual__inner {
    padding-top: 72px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
  }

  .ceo-visual__title h1 {
    font-size: 35px;
  }

  .ceo-visual__statement {
    width: 100%;
    font-size: 23px;
  }

  .ceo-message {
    padding: 76px 0 86px;
  }

  .ceo-message__inner {
    display: block;
  }

  .ceo-message__lead {
    padding: 0;
  }

  .ceo-message__lead h2 {
    font-size: clamp(27px, 7.5vw, 34px);
  }

  .ceo-message__copy {
    margin-top: 58px;
    padding: 0;
  }

  .ceo-message__copy::before {
    display: none;
  }

  .ceo-message__copy > p {
    font-size: 16px;
    line-height: 1.86;
  }

  .ceo-message__signature {
    width: 100%;
    margin-top: 38px;
  }

  .ceo-message__signature-lockup {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .ceo-message__signature-mark {
    width: 88px;
    height: 28px;
    flex-basis: 88px;
  }

  .ceo-message__signature-mark img {
    width: 234px;
  }

  .ceo-message__signature strong {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ceo-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
