:root {
  --bg: #1f2328; /* 다크 배경 */
  --card: #2b2f36; /* 카드 배경 */
  --text: #f2f2f2; /* 기본 텍스트 */
  --muted: #b0b6bf; /* 보조 텍스트 */
  --accent: #ff8c00; /* 안전 오렌지 포인트 */
  --stroke: rgba(255, 255, 255, 0.08);
  --radius: 14px;
  --maxw: 520px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Noto Sans KR", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
}

/* */
.decor {
  display: none;
}
h1 {
  margin-top: 10px;
}
.wrap {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 24px 16px;
}

.phone {
  width: min(100%, var(--maxw));
}

.topbar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.iconbtn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--stroke);
  background: #2b2f36;
  color: var(--text);
  cursor: pointer;
}

.profile {
  text-align: center;
  margin-bottom: 20px;
}

.avatar {
  width: 120px;
  height: 120px;
  margin: 0 auto 12px;
  overflow: hidden;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bio {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

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

.link {
  display: block;
  padding: 16px;
  background: var(--card);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  text-align: center;
  border: 1px solid var(--stroke);
  transition: all 0.15s ease;
}

/* 일반 링크 */
.link:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

/* 전화하기 강조 */
.link.call {
  background: var(--accent);
  color: #111;
  font-size: 16px;
}

.footer {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 24px;
}
/* 문자 문의 버튼 */
.link.sms {
  background: #1e242b;
  border: 1px dashed var(--accent);
  color: var(--text);
  font-weight: 600;
}

.link.sms:hover {
  background: #262c34;
}
