:root {
  color-scheme: light;
  --ink: #17211c;
  --muted: #5d6b63;
  --line: #d7dfd8;
  --paper: #f8faf7;
  --card: #ffffff;
  --accent: #14785d;
  --accent-strong: #0f5f4b;
  --warm: #f0b35d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 14%, rgba(240, 179, 93, 0.24), transparent 28rem),
    linear-gradient(135deg, #f8faf7 0%, #eef5f0 45%, #f6f0e5 100%);
}

.profile-shell {
  width: min(1040px, calc(100% - 32px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 28px;
  align-items: center;
  padding: 48px 0;
}

.intro,
.details article {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(215, 223, 216, 0.9);
  box-shadow: 0 24px 80px rgba(23, 33, 28, 0.08);
  backdrop-filter: blur(14px);
}

.intro {
  border-radius: 8px;
  padding: clamp(32px, 6vw, 64px);
}

.avatar {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 2rem;
  font-weight: 750;
}

.eyebrow {
  margin: 32px 0 10px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 10px;
  font-size: clamp(3rem, 9vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.role {
  margin-bottom: 28px;
  color: var(--accent-strong);
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 650;
}

.summary {
  max-width: 680px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
}

.actions a:first-child {
  background: var(--ink);
  color: #fff;
}

.details {
  display: grid;
  gap: 16px;
}

.details article {
  border-radius: 8px;
  padding: 22px;
}

.details h2 {
  margin-bottom: 10px;
  font-size: 1rem;
}

.details p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

  .intro {
    padding: 28px;
  }
}
