/* Connect / profile section — properties page */
.social-showcase { background: var(--sage); }

.social-inner { width: 100%; max-width: 1320px; margin: 0 auto; }

.social-head {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 430px);
  column-gap: 7vw;
  align-items: end;
  margin-bottom: 44px;
}

.social-head h2 {
  margin: 0;
  font: clamp(2.7rem, 5vw, 5rem)/1.05 var(--serif);
  font-weight: 400;
  letter-spacing: -.015em;
}

.social-head > p { max-width: 430px; margin: 0; color: #56605c; }

.profile-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }

.profile-tile {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 32px 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  color: var(--ink);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}

.profile-tile:hover,
.profile-tile:focus-visible {
  transform: translateY(-5px);
  border-color: transparent;
  box-shadow: 0 22px 48px rgba(48, 42, 41, .14);
}

.profile-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: rgba(48, 42, 41, .06);
  color: var(--brand, var(--ink));
}

.profile-mark svg { width: 24px; height: 24px; fill: currentColor; }

.profile-network {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .64rem;
  font-weight: 600;
  color: #7c6b6c;
}

.profile-tile h3 {
  margin: 9px 0 12px;
  font: 1.95rem/1.1 var(--serif);
  font-weight: 400;
  letter-spacing: -.01em;
}

.profile-note { margin: 0 0 22px; color: #5c6461; font-size: .86rem; }

.profile-go {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: .74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.profile-go em { font-style: normal; transition: transform .25s; }
.profile-tile:hover .profile-go em { transform: translate(3px, -3px); }

@media (min-width: 1081px) {
  .profile-tile h3 { min-height: 2.2em; }
  .profile-note { min-height: 3.9em; }
}

@media (max-width: 1080px) {
  .profile-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 850px) {
  .social-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 34px; }
}

@media (max-width: 560px) {
  .profile-grid { grid-template-columns: 1fr; }
  .profile-tile { min-height: 0; padding: 28px 24px; }
}
