.contact-section {
  padding-top: 70px;
}

.contact-card-static {
  cursor: default;
}

.contact-card-static:hover {
  background: transparent;
  color: inherit;
}

.contact-card-static span {
  color: var(--muted);
}

.line-estimate {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  align-items: center;
  gap: clamp(40px, 8vw, 110px);
  margin-top: 18px;
  padding: clamp(36px, 6vw, 76px);
  background: var(--paper);
  color: var(--black);
}

.line-estimate-copy small {
  color: var(--green);
  font-size: 10px;
  letter-spacing: .2em;
}

.line-estimate-copy h2 {
  margin: 16px 0 24px;
  font-size: clamp(38px, 6vw, 78px);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -.045em;
}

.line-estimate-copy p {
  max-width: 600px;
  margin: 0;
  color: #555b55;
  font-size: 14px;
}

.line-estimate-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-top: 30px;
  padding: 0 28px;
  background: var(--green);
  color: #061007;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  transition: transform .25s, background .25s;
}

.line-estimate-link:hover {
  background: #4ed15c;
  transform: translateY(-2px);
}

.line-qr-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: #fff;
}

.line-qr-link img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
}

.line-qr-link span {
  color: #555b55;
  font-size: 10px;
  letter-spacing: .08em;
}

.contact-grid-secondary {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.contact-grid-secondary .contact-card {
  min-height: 240px;
}

.contact-grid-secondary .contact-card strong {
  font-size: clamp(20px, 2vw, 30px);
}

.contact-note {
  margin: 30px 0 0;
  color: #777d76;
  font-size: 11px;
}

@media (max-width: 800px) {
  .contact-section {
    padding-top: 40px;
  }

  .line-estimate {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 34px 24px;
  }

  .line-estimate-copy h2 {
    font-size: clamp(38px, 13vw, 58px);
  }

  .line-qr-link {
    width: min(100%, 280px);
    margin: 0 auto;
  }

  .contact-grid-secondary {
    grid-template-columns: 1fr;
  }
}
