.hero--team .hero-copy h1 { font-size: clamp(64px, 7.6vw, 126px); }
.hero--team .hero-copy h1 em { font-size: .82em; }
.project-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  background: #111;
  border-block: 1px solid rgba(255,255,255,.1);
}
.project-feature__visual { position: relative; min-height: 600px; }
.project-feature__visual::before {
  position: absolute;
  inset: 3% -3% -3% 4%;
  content: "";
  background: var(--red);
  clip-path: polygon(5% 0,100% 7%,94% 100%,0 92%);
}
.project-feature__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(0 5%,96% 0,100% 93%,7% 100%);
}
.project-feature__visual span {
  position: absolute;
  right: -12px;
  bottom: 32px;
  padding: 11px 17px;
  color: #000;
  background: var(--yellow);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}
.project-feature__event {
  margin: 0 0 12px;
  color: rgba(255,255,255,.55);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
}
.project-feature__copy h2 {
  margin: 0;
  font-family: var(--font-jp);
  font-size: clamp(52px, 6vw, 92px);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1;
}
.project-feature__copy h2 em { color: var(--red); font-style: normal; }
.project-feature__copy > p:not(.eyebrow):not(.project-feature__event) {
  margin: 30px 0;
  color: rgba(255,255,255,.7);
  line-height: 2;
}
.project-feature__tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 34px; }
.project-feature__tags span {
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.2);
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: .12em;
}
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
  background: var(--red);
}
.contact-section .eyebrow { color: var(--yellow); }
.contact-section .eyebrow span { background: var(--yellow); }
.contact-section h2 { margin: 0; font-size: clamp(44px, 6vw, 82px); line-height: 1.1; }
.contact-section h2 em { color: var(--yellow); font-style: normal; }
.contact-section p { max-width: 540px; line-height: 1.9; }
.contact-mail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 19px 22px;
  color: #000;
  background: var(--yellow);
  font-family: var(--font-en);
  font-size: clamp(17px, 2.2vw, 28px);
  font-weight: 700;
}
.contact-mail__address {
  cursor: text;
  user-select: text;
  -webkit-user-select: text;
}
.contact-copy {
  margin-top: 12px;
  padding: 0;
  color: #fff;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.65);
  background: transparent;
  font: 700 12px/1.8 var(--font-jp);
  letter-spacing: .08em;
  cursor: pointer;
}
.contact-copy:hover,
.contact-copy:focus-visible { color: var(--yellow); border-bottom-color: var(--yellow); }
@media (max-width: 900px) {
  .project-feature { grid-template-columns: 1fr; }
  .project-feature__visual { min-height: 480px; }
}
@media (max-width: 760px) {
  .hero--team .hero-copy h1 { font-size: clamp(52px, 16vw, 76px); }
  .project-feature__visual { min-height: 340px; }
  .contact-section { grid-template-columns: 1fr; }
}
