<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1,viewport-fit=cover">
<meta name="theme-color" content="#0b0b0c">
<title>마술사 명품복원 전화상담</title>
<style>
:root {
    color-scheme: dark;
}
* {
    box-sizing: border-box;
}
html, body {
    margin: 0;
    min-height: 100%;
    background: #0b0b0c;
    color: #f5f5f5;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
body {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.wrap {
    width: 100%;
    max-width: 560px;
}
.primary,
.secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
    text-decoration: none;
    border-radius: 18px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}
.primary {
    min-height: 180px;
    padding: 28px 22px;
    background: #f5f5f5;
    color: #0b0b0c;
    font-size: 28px;
    line-height: 1.35;
    font-weight: 800;
}
.primary .en {
    display: block;
    margin-top: 10px;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 600;
    opacity: .72;
}
.links {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}
.secondary {
    min-height: 58px;
    padding: 14px 18px;
    background: #18181b;
    color: #f5f5f5;
    border: 1px solid #303036;
    font-size: 17px;
    font-weight: 650;
}
.primary:active,
.secondary:active {
    transform: scale(.985);
}
</style>
</head>
<body>
<main class="wrap">
    <a class="primary" href="tel:+821063982221">
        <span>
            마술사 명품복원 전화상담
            <span class="en">Call Masulsa Luxury Restoration</span>
        </span>
    </a>

    <div class="links">
        <a class="secondary" href="https://masulsa.com">English Website</a>
        <a class="secondary" href="https://masulsa.co.kr">한국어 웹사이트</a>
        <a class="secondary" href="https://map.naver.com/p/entry/place/1810525948">네이버 플레이스</a>
    </div>
</main>
</body>
</html>