/* base
————————————————— */

body {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  margin: 0;
  line-height: 1.5;
  color: #333;
  background: #fff;
  /*letter-spacing: 0.1em;*/
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 22px;
}

/* layout
————————————————— */

.page-main {
  width: 33em;
  max-width: 960px;
  padding: 3% 0;
  margin: 0 auto;
}

.project {
  margin: 3em 0 10em 0; /* bottom margin: avoid overlap with footer */
  font-size: 0.8em;
}

/* project title
————————————————— */

.project-title {
  margin: 0 0 0 0;
  display: block;
  font-size: 2em;
  letter-spacing: 0.3em;
  font-family: "Hiragino Sans", "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 100;
}

.project-title span {
  margin: 0 0 0 0.5em;
  font-size: 0.5em;
  font-weight: 100;
  letter-spacing: 0.1em;
}

/* project text block
————————————————— */

.project-nav {
  max-width: 100%;
}

.project-text {
  margin: 0;
  white-space: pre-wrap; /* keep manual line breaks */
  line-height: 1.7;
  font-size: 1.1em;
  font-family: "Barlow Condensed", sans-serif;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
  overflow-wrap: break-word;
}

.project-overview-title{
  font-size: 1.5em;
  margin: 0 0.3em 0 0;
  padding:0;
  letter-spacing:0.2em;
}

.project-overview {
  margin: 1.5em 0 11em 0;
  font-size: 1.1em;
  font-weight: 300;
}

.project-overview a {
  /*color: #ba3f20;*/
  color: #000;
  text-decoration: none;
  display: inline-block;
}

.project-overview a:hover {
  color: #6b7d89;
}

/* footer nav (fixed)
————————————————— */

.footer-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #ddd;
  padding: 1em 0 2.5em 0;
  z-index: 1000;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 5%;
  display: flex;
  justify-content: center;
  gap: 2.5em;
  font-size: 0.8em;
  width: 90%;
}

.footer-links li {
  text-align: center;
}

.footer-links a {
  color: #ba3f20;
  text-decoration: underline;
  padding: 0.6em 2em; /* larger tap area */
  display: inline-block;
}

.footer-links a:hover {
  color: #6b7d89;
}

/* sub label under footer links */

.footer-sub {
  display: block;
  margin-top: 0.2em;
  font-size: 1em;
  color: #777;
  letter-spacing: 0.05em;
  text-align: center;
}

/* responsive
————————————————— */

@media (max-width: 840px) {

  .project {
    margin: 2em 0 8em 0.2em;
    font-size: 0.9em;
  }

.page-main {
  width: 86%;
}


  .project-title {
    font-size: 1.3em;
  }

  .project-text {
    font-size: 0.9em;
  }

  .project-overview {
    font-size: 90%;
  }

  .footer-links {
    gap: 0;
  }

  .footer-links li {
    width: 33%;
    text-align: center;
  }

  .footer-links a {
    padding: 0.6em 0;
    font-size: 110%;
    width: 100%; /* full width tap area on mobile */
  }

  .footer-sub {
    margin-top: 0.15em;
    font-size: 0.8em;
  }

}
