.visiting-page {
  padding: 56px 0 80px;
}

.visiting-heading {
  margin-top: 26px;
  text-align: center;
}

.visiting-heading h1 {
  margin: 0;
  font-family: "Changa", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1;
  color: #f5598b;
}

.visiting-heading p {
  max-width: 780px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.visiting-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 24px;
  align-items: stretch;
}

.contact-panel,
.about-panel {
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(131, 189, 221, 0.14), transparent 22%),
    linear-gradient(180deg, rgba(7, 45, 49, 0.92), rgba(5, 24, 30, 0.96));
}

.contact-profile {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 248, 240, 0.08);
}

.contact-avatar {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(255, 248, 240, 0.04);
  border: 1px solid rgba(151, 199, 0, 0.16);
}

.contact-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-profile h2 {
  margin: 0;
  font-family: "Changa", sans-serif;
  font-size: 1.85rem;
  line-height: 1;
  color: #f5598b;
}

.contact-profile p {
  margin: 10px 0 0;
  color: #97c700;
  font-weight: 600;
}

.contact-intro {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(255, 248, 240, 0.08);
  border-radius: 22px;
  background: rgba(255, 248, 240, 0.04);
}

.contact-intro strong {
  display: block;
  margin-bottom: 8px;
  color: #ffe7c8;
  font-family: "Changa", sans-serif;
  font-size: 1.05rem;
}

.contact-intro span {
  color: var(--muted);
  line-height: 1.7;
}

.contact-stack {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.contact-pill {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(245, 89, 139, 0.48);
  background: rgba(255, 248, 240, 0.04);
  color: #ffe7c8;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.contact-pill:hover {
  transform: translateX(4px);
  border-color: rgba(151, 199, 0, 0.44);
  background: rgba(255, 248, 240, 0.08);
  box-shadow: 0 16px 28px rgba(2, 8, 14, 0.18);
}

.static-pill:hover {
  transform: none;
}

.pill-icon {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(151, 199, 0, 0.14);
  color: #97c700;
  font-weight: 700;
}

.about-panel h2 {
  margin: 0;
  font-family: "Changa", sans-serif;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.08;
  color: #f5598b;
}

.about-copy {
  margin-top: 22px;
  display: grid;
  gap: 18px;
}

.about-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 1rem;
  text-align: justify;
}

.about-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.about-highlights article {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(151, 199, 0, 0.16);
  background: rgba(255, 248, 240, 0.04);
}

.about-highlights strong {
  display: block;
  margin-bottom: 6px;
  color: #97c700;
  font-family: "Changa", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.about-highlights span {
  color: var(--muted);
}

@media (max-width: 1180px) {
  .visiting-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .about-highlights {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .visiting-page {
    padding-top: 28px;
  }

  .contact-panel,
  .about-panel {
    padding: 22px;
  }

  .contact-profile {
    align-items: flex-start;
  }

  .contact-profile h2 {
    font-size: 1.55rem;
  }
}
