:root {
  color-scheme: light;
  --bg: #f7f4ed;
  --surface: #fffdf8;
  --ink: #1e2427;
  --muted: #5d666b;
  --line: #d8d0c2;
  --accent: #0b6b63;
  --accent-strong: #084d47;
  --shadow: 0 18px 50px rgba(31, 38, 42, 0.12);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: var(--accent-strong);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 32px 16px;
}

.profile {
  width: min(100%, 680px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: clamp(28px, 6vw, 52px);
}

.logo {
  display: block;
  width: 96px;
  height: 96px;
  margin-bottom: 28px;
  border-radius: 16px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.details {
  display: grid;
  gap: 1px;
  margin: 32px 0 28px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.details div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  padding: 15px 16px;
  background: var(--surface);
}

dt {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 750;
}

dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 520px) {
  .details div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
