@font-face {
  font-family: "Marcellus";
  src: url("./Marcellus-Regular.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "DM Sans";
  src: url("./DMSans.ttf") format("truetype");
  font-display: swap;
}

:root {
  --ink: #0f0f12;
  --panel: #171717;
  --line: rgba(201, 162, 77, 0.28);
  --gold: #c9a24d;
  --gold-soft: #fcf6ba;
  --muted: #c9c3b6;
  --paper: #fffaf0;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--ink);
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  background:
    radial-gradient(circle at 15% 0%, rgba(252, 246, 186, 0.12), transparent 34rem),
    linear-gradient(145deg, #080809 0%, #151515 45%, #0f0f12 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  width: min(100%, 520px);
  margin: 0 auto;
  padding: 24px 18px 30px;
}

.brandbar {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0 20px;
}

.brandbar img {
  width: min(82%, 310px);
  height: auto;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 22px;
  background:
    linear-gradient(180deg, rgba(15, 15, 18, 0.75), rgba(15, 15, 18, 0.96)),
    url("./mrc-mark.svg") center 42% / 84% no-repeat;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.profile {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avatar {
  width: 92px;
  height: 92px;
  flex: 0 0 auto;
  border: 1px solid rgba(252, 246, 186, 0.4);
  border-radius: 50%;
  object-fit: cover;
  background: #0f0f12;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Marcellus", Georgia, serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 1.05;
}

.role {
  margin: 9px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.intro {
  margin: 26px 0 0;
  color: #efe7d5;
  font-size: 15px;
  line-height: 1.75;
}

.actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 0;
}

.button {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(201, 162, 77, 0.42);
  border-radius: 8px;
  color: #fff8e8;
  background: rgba(255, 255, 255, 0.045);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

.button.primary {
  grid-column: 1 / -1;
  color: #12100b;
  background: linear-gradient(135deg, #fcf6ba 0%, #d8b45a 48%, #bf953f 100%);
  border-color: transparent;
}

.section {
  margin-top: 16px;
  padding: 20px;
  border: 1px solid rgba(201, 162, 77, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.section h2 {
  margin: 0 0 14px;
  color: var(--gold-soft);
  font-family: "Marcellus", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
}

.list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li,
.detail {
  color: #e7dcc7;
  font-size: 14px;
  line-height: 1.55;
}

.detail strong {
  color: var(--gold);
  display: block;
  font-size: 12px;
  letter-spacing: 1.5px;
  margin-bottom: 3px;
  text-transform: uppercase;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.footer {
  color: #a9a193;
  font-size: 12px;
  line-height: 1.6;
  padding: 18px 4px 0;
  text-align: center;
}

@media (max-width: 390px) {
  .shell {
    padding-inline: 12px;
  }

  .hero {
    padding: 22px 18px;
  }

  .profile {
    align-items: flex-start;
    flex-direction: column;
  }

  h1 {
    font-size: 30px;
  }
}
