:root {
  --ink: #252322;
  --muted: #756f6a;
  --paper: #f5eee7;
  --card: #fffaf5;
  --line: #e6dbd1;
  --coral: #e46d57;
  --coral-dark: #ba4d3e;
  font-family: "DM Mono", monospace;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--paper);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

img {
  display: block;
  max-width: 100%;
}

.profile-shell {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(100%, 1120px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 38px 6vw 30px;
  overflow: hidden;
}

.profile-shell::before,
.profile-shell::after {
  position: absolute;
  z-index: -1;
  display: block;
  border: 1px solid rgba(228, 109, 87, 0.22);
  border-radius: 50%;
  content: "";
}

.profile-shell::before {
  width: 410px;
  height: 410px;
  top: -205px;
  right: -110px;
}

.profile-shell::after {
  width: 250px;
  height: 250px;
  bottom: -130px;
  left: -100px;
}

.top-line,
.page-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.top-line__dot,
.availability__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(228, 109, 87, 0.13);
}

.top-line__dot {
  margin-left: auto;
  margin-right: 11px;
}

.profile-card {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: clamp(40px, 8vw, 112px);
  align-items: center;
  padding: 8vh 0;
  animation: rise-in 700ms ease both;
}

.profile-card__intro {
  position: relative;
}

.avatar {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  margin-bottom: 38px;
  border-radius: 50%;
  color: var(--card);
  background: var(--ink);
  font-family: "Playfair Display", serif;
  font-size: 22px;
  letter-spacing: 0;
  box-shadow: 12px 12px 0 var(--coral);
}

.eyebrow,
.section-label {
  margin: 0 0 15px;
  color: var(--coral-dark);
  font-size: 11px;
  letter-spacing: 0.14em;
  line-height: 1.5;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(62px, 9vw, 112px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.83;
}

h1 em {
  color: var(--coral);
  font-weight: 500;
}

.role-label {
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.intro-copy {
  max-width: 360px;
  margin: 35px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
}

.profile-card__links {
  padding-top: 52px;
}

.section-label {
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.social-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 16px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--ink);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: currentColor;
  box-shadow: 4px 4px 0 rgba(37, 35, 34, 0.08);
  transform: translateX(4px);
  outline: none;
}

.social-link__mark {
  display: grid;
  width: 37px;
  height: 37px;
  flex: 0 0 37px;
  place-items: center;
  border: 0;
  border-radius: 50%;
}

.social-link__mark svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.social-link--instagram .social-link__mark svg rect,
.social-link--instagram .social-link__mark svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-link__text {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.social-link__text strong {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 600;
}

.social-link__text small {
  overflow: hidden;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.03em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.social-link__arrow {
  margin-left: auto;
  font-size: 19px;
  transition: transform 180ms ease;
}

.social-link:hover .social-link__arrow,
.social-link:focus-visible .social-link__arrow {
  transform: translate(3px, -3px);
}

.social-link--snapchat { background: #fff6b8; }
.social-link--snapchat .social-link__mark { color: #b28d00; }
.social-link--snapchat:hover,
.social-link--snapchat:focus-visible { color: #8e7100; }
.social-link--instagram { background: #f8e0e9; }
.social-link--instagram .social-link__mark { color: #b24d6a; }
.social-link--instagram:hover,
.social-link--instagram:focus-visible { color: #963d57; }
.social-link--whatsapp { background: #dff1e4; }
.social-link--whatsapp .social-link__mark { color: #39815e; }
.social-link--whatsapp:hover,
.social-link--whatsapp:focus-visible { color: #2e6f50; }
.social-link--telegram { background: #dceff8; }
.social-link--telegram .social-link__mark { color: #2d8fbe; }
.social-link--telegram:hover,
.social-link--telegram:focus-visible { color: #23769d; }

.instagram-dot {
  fill: currentColor !important;
  stroke: none;
}

.profile-card__footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.copy-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.copy-button:hover,
.copy-button:focus-visible {
  color: var(--coral-dark);
  outline: none;
}

.copy-button__icon {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 15px;
}

.availability {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 10px;
}

.availability__dot {
  width: 5px;
  height: 5px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 12px 16px;
  color: var(--card);
  background: var(--ink);
  font-size: 10px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 680px) {
  .profile-shell { padding: 25px 24px 22px; }
  .profile-card { grid-template-columns: 1fr; gap: 34px; padding: 13vh 0 8vh; }
  .avatar { margin-bottom: 31px; }
  .profile-card__links { padding-top: 0; }
  .profile-card__footer { align-items: flex-start; flex-direction: column; }
  .page-footer { font-size: 8px; }
}