* { box-sizing:border-box; }
body {
  margin:0;
  background:#eef3f8;
  color:#061d38;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI","Noto Sans KR",Arial,sans-serif;
}
.card {
  max-width:520px;
  min-height:100vh;
  margin:0 auto;
  background:#fff;
  border:4px solid #c28b25;
  overflow:hidden;
  box-shadow:0 10px 35px rgba(0,0,0,.18);
}
.hero {
  position:relative;
  text-align:center;
  padding:28px 18px 26px;
  background:#fff;
  overflow:hidden;
}
.hero-bg {
  position:absolute;
  inset:0 0 auto 0;
  height:220px;
  background:linear-gradient(135deg,#031d38 0%,#062b52 55%,#0b477d 100%);
  z-index:0;
}
.wave-gold {
  position:absolute;
  left:-20%;
  right:-20%;
  top:150px;
  height:95px;
  background:#c28b25;
  border-radius:0 0 50% 50%;
  transform:rotate(-6deg);
  z-index:1;
}
.wave-white {
  position:absolute;
  left:-20%;
  right:-20%;
  top:166px;
  height:110px;
  background:#fff;
  border-radius:0 0 50% 50%;
  transform:rotate(-6deg);
  z-index:2;
}
.profile-wrap {
  position:relative;
  z-index:3;
  width:210px;
  height:210px;
  margin:0 auto 26px;
  border-radius:50%;
  border:5px solid #c28b25;
  background:#f1f2f4;
  padding:7px;
  box-shadow:0 10px 24px rgba(0,0,0,.25);
}
.profile {
  width:100%;
  height:100%;
  border-radius:50%;
  object-fit:cover;
  object-position:center center;
  background:#f1f2f4;
  display:block;
}
.title { position:relative; z-index:4; }
h1 {
  margin:8px 0 6px;
  font-size:30px;
  line-height:1.15;
  letter-spacing:-1.5px;
  color:#062847;
  font-weight:900;
}
.gold {
  color:#b8872e;
  font-size:17px;
  font-weight:900;
}
.name {
  margin:14px 0 8px;
  font-size:40px;
  font-weight:900;
  letter-spacing:11px;
  color:#062847;
}
.role {
  display:inline-block;
  padding:8px 24px;
  border-radius:999px;
  background:#062847;
  color:#fff;
  font-size:17px;
  font-weight:900;
}
.area {
  margin:16px 0 0;
  line-height:1.55;
  font-size:17px;
  font-weight:900;
  color:#08213f;
}
.section { padding:18px 22px 20px; }
.info {
  background:#fff;
  border:1px solid #e1e7ef;
  border-radius:18px;
  padding:17px;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
}
.row {
  display:flex;
  align-items:center;
  gap:12px;
  padding:8px 0;
  border-bottom:1px solid #edf1f5;
  font-size:18px;
}
.row:last-child { border-bottom:none; }
.icon {
  flex:0 0 34px;
  width:34px;
  height:34px;
  border-radius:50%;
  background:#062847;
  color:#fff;
  display:grid;
  place-items:center;
  font-size:17px;
  font-weight:900;
}
.icon.talk { background:#ffd600; color:#2b2100; font-size:11px; }
.label {
  width:62px;
  color:#a36f13;
  font-weight:900;
}
.value {
  flex:1;
  color:#061d38;
  font-weight:800;
  word-break:break-all;
}
.buttons {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin-top:16px;
}
.btn {
  display:block;
  padding:14px 8px;
  border-radius:14px;
  text-align:center;
  text-decoration:none;
  font-size:16px;
  font-weight:900;
  color:#062847;
  background:#fff;
  border:1px solid #dbe3ec;
  box-shadow:0 4px 12px rgba(0,0,0,.06);
}
.btn.navy { background:#062847; color:#fff; border:none; }
.btn.green { background:#18a64a; color:#fff; border:none; }
.btn.yellow { background:#ffdf00; color:#211700; border:none; }
.btn.goldbtn { background:#bd8423; color:#fff; border:none; }
.qr-card {
  display:flex;
  align-items:center;
  gap:17px;
  margin-top:16px;
  padding:16px;
  border-radius:18px;
  background:#fff;
  border:1px solid #e1e7ef;
  box-shadow:0 6px 18px rgba(0,0,0,.08);
}
.qr-card img {
  width:120px;
  height:120px;
  object-fit:contain;
  border:2px solid #c28b25;
  padding:6px;
  background:#fff;
}
.qr-title {
  font-size:21px;
  font-weight:900;
  margin-bottom:8px;
  color:#062847;
}
.qr-text {
  font-size:15px;
  line-height:1.55;
  color:#203c5d;
  font-weight:800;
}
.save-btn {
  display:inline-block;
  margin-top:10px;
  padding:9px 14px;
  border-radius:12px;
  background:#062847;
  color:#fff;
  text-decoration:none;
  font-weight:900;
}
.address {
  margin-top:14px;
  padding:16px;
  border-radius:18px;
  background:#f7f9fc;
  border:1px solid #e2e8f0;
  line-height:1.65;
  font-weight:800;
}
.footer {
  padding:20px 18px;
  background:#062847;
  color:#fff;
  text-align:center;
  line-height:1.7;
  font-size:15px;
  border-top:3px solid #c28b25;
}
.footer b { color:#f4c66a; }
@media(max-width:420px) {
  .buttons { grid-template-columns:repeat(2,1fr); }
  .profile-wrap { width:185px; height:185px; }
  h1 { font-size:27px; }
  .name { font-size:35px; letter-spacing:8px; }
}
