:root {
  --navy: #000a38;
  --white: #ffffff;
  --ink: #080d1b;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--white);
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.46;
  -webkit-font-smoothing: antialiased;
}

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

.site-header {
  height: 94px;
  background: var(--navy);
  border-top: 3px solid #f3f5f8;
}

.header-inner {
  width: min(100% - 48px, 1190px);
  height: 91px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.brand-logo {
  width: 322px;
  height: auto;
}

.profile {
  background: var(--white);
}

.profile-inner {
  position: relative;
  width: min(100% - 48px, 1190px);
  min-height: 1122px;
  margin: 0 auto;
  padding-top: 24px;
}

.bull-frame {
  position: absolute;
  z-index: 1;
  top: 24px;
  right: 0;
  width: 59.2%;
  height: 1098px;
  margin: 0;
  overflow: hidden;
}

.bull-frame img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.profile-copy {
  position: relative;
  z-index: 2;
  width: 51.4%;
  padding-top: 65px;
  display: grid;
  gap: 82px;
}

.content-block {
  min-height: 142px;
  margin: 0;
  padding: 6px 0 0;
  background: var(--navy);
  color: var(--white);
}

.content-block h1,
.content-block h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(2.5rem, 3.8vw, 3rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.12;
}

.content-block p {
  margin: 32px 0 0;
  font-size: 1rem;
  line-height: 1.5;
}

.approach-block {
  min-height: 239px;
}

.content-block:nth-child(2),
.content-block:nth-child(4) {
  min-height: 167px;
}

.approach-block ul {
  margin: 32px 18px 0 40px;
  padding: 0;
  line-height: 1.4;
}

.approach-block li {
  padding-left: 1px;
}

.content-block strong {
  font-weight: 700;
}

.contact {
  background: var(--white);
}

.contact-inner {
  width: min(100% - 64px, 1172px);
  margin: 0 auto;
  padding: 22px 0 12px;
}

.contact h2 {
  margin: 0 0 13px;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.2;
}

address {
  display: flex;
  gap: 58px;
  font-style: normal;
}

address a {
  color: var(--ink);
  text-decoration: none;
}

address a:hover,
address a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  min-height: 32px;
  padding: 0 14px 7px;
  background: var(--white);
  color: #111827;
  text-align: right;
}

.site-footer p {
  margin: 0;
  font-size: 0.42rem;
  line-height: 1.25;
}

@media (min-width: 1280px) {
  .header-inner,
  .profile-inner {
    width: min(100% - 52px, 1440px);
  }
}

@media (max-width: 900px) {
  .site-header {
    height: 88px;
  }

  .header-inner {
    width: min(100% - 32px, 720px);
    height: 85px;
  }

  .brand-logo {
    width: 284px;
  }

  .profile-inner {
    width: min(100% - 32px, 720px);
    min-height: 0;
    padding: 28px 0 58px;
  }

  .bull-frame {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: min(110vw, 650px);
  }

  .profile-copy {
    width: calc(100% - 24px);
    margin: -58px auto 0;
    padding: 0;
    gap: 24px;
  }

  .content-block,
  .approach-block {
    min-height: 0;
    padding: 24px;
  }

  .content-block h1,
  .content-block h2 {
    font-size: clamp(2rem, 9vw, 2.75rem);
  }

  .content-block p,
  .approach-block ul {
    margin-top: 18px;
  }

  .approach-block ul {
    margin-right: 0;
    margin-left: 20px;
  }

  .contact-inner {
    width: min(100% - 40px, 700px);
    padding: 30px 0 20px;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 16px;
  }

  .brand-logo {
    width: 248px;
  }

  .profile-inner {
    width: min(100% - 20px, 480px);
  }

  .profile-copy {
    width: calc(100% - 12px);
  }

  .content-block,
  .approach-block {
    padding: 21px 18px;
  }

  address {
    flex-direction: column;
    gap: 5px;
  }

  .site-footer {
    padding-top: 14px;
  }
}
