.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 0;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px 32px;
  box-shadow: 0 2px 16px rgba(13, 27, 42, 0.05);
}
.contact-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--teal-muted);
  border: 1px solid rgba(30, 184, 160, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.contact-card-icon svg {
  width: 18px;
  height: 18px;
}
.contact-card-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--teal);
  margin-bottom: 14px;
}
.contact-card-body {
  font-size: 14.5px;
  color: var(--text-dark);
  line-height: 1.8;
  font-weight: 300;
}
.contact-card-body address {
  font-style: normal;
}
.contact-card-body a {
  color: var(--teal);
  text-decoration: none;
}
.contact-card-body a:hover {
  text-decoration: underline;
}
.contact-note {
  font-size: 12.5px;
  color: var(--text-light);
  margin-top: 8px;
  line-height: 1.6;
}

/* Recruit section */
.recruit-box {
  background: var(--navy);
  border-radius: 16px;
  padding: 40px 40px;
  margin-top: 24px;
  position: relative;
  overflow: hidden;
}
.recruit-box::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 1px solid rgba(30, 184, 160, 0.12);
  pointer-events: none;
}
.recruit-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--teal);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.recruit-label::before {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: var(--teal);
}
.recruit-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 28px);
  color: #fff;
  font-weight: 400;
  margin-bottom: 14px;
  line-height: 1.3;
}
.recruit-body {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 300;
  line-height: 1.85;
  /* max-width: 520px; */
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .recruit-box {
    padding: 32px 24px;
  }
}
