:root {
  --cream: #f7eed9;
  --card: #fff8ec;
  --ink: #3d2a14;
  --gold: #c9973a;
  --gold-deep: #6b4210;
  --ring: #e8b84a;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: "Nunito Sans", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, #ffe6a8 0%, transparent 60%),
    linear-gradient(180deg, #fbf3e3 0%, var(--cream) 100%);
}
.wrap {
  width: min(420px, 100% - 2rem);
  margin: 0 auto;
  padding: 2.5rem 0 3rem;
}
.hero { text-align: center; margin-bottom: 1.5rem; }
.avatar {
  width: 96px; height: 96px; margin: 0 auto 1rem;
  border-radius: 50%;
  background: var(--card);
  border: 3px solid var(--ring);
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(107,66,16,.15);
}
.avatar img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
h1 {
  font-family: Fraunces, Georgia, serif;
  font-weight: 700;
  font-size: 2rem;
  margin: 0 0 .5rem;
  line-height: 1.15;
}
.tag {
  margin: 0 auto;
  max-width: 34ch;
  font-size: .95rem;
  line-height: 1.45;
  opacity: .9;
}
.links { display: grid; gap: .75rem; }
.btn {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .95rem 1.05rem;
  border-radius: 16px;
  background: var(--card);
  color: var(--ink);
  text-decoration: none;
  border: 1.5px solid rgba(201,151,58,.35);
  box-shadow: 0 2px 0 rgba(107,66,16,.08);
  transition: transform .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.btn .icon {
  flex: 0 0 40px;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(201,151,58,.14);
  display: grid; place-items: center;
  color: var(--gold-deep);
}
.btn .copy { display: flex; flex-direction: column; gap: .12rem; min-width: 0; text-align: left; }
.btn .label { font-weight: 750; font-size: 1.02rem; line-height: 1.2; }
.btn small { font-size: .82rem; opacity: .72; }
.btn:hover, .btn:focus-visible {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 8px 20px rgba(201,151,58,.25);
  outline: none;
}
.btn.primary {
  background: linear-gradient(180deg, #e0b35a, #c9973a);
  border-color: #b8862f;
  color: #2a1a0a;
}
.btn.primary .icon {
  background: rgba(42,26,10,.12);
  color: #2a1a0a;
}
.btn.primary small { opacity: .85; }
footer {
  margin-top: 1.75rem;
  text-align: center;
  font-size: .75rem;
  line-height: 1.4;
  opacity: .75;
}
@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
  .btn:hover { transform: none; }
}
