:root {
  --bg: #0b0d10;
  --bg-2: #12161c;
  --fg: #ecebe6;
  --muted: #9aa0a6;
  --gold: #d4a24a;
  --gold-hi: #f5d07a;
  --line: rgba(255,255,255,.08);
  --radius: 14px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Inter", "SF Pro Text",
    "Pretendard", "Noto Sans KR", "PingFang SC", "Microsoft YaHei", sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--gold); color: #000; padding: .5rem .75rem; border-radius: 6px;
}
.skip:focus { left: 1rem; top: 1rem; z-index: 100; }

.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: rgba(11,13,16,.85);
  backdrop-filter: saturate(140%) blur(10px);
  z-index: 10;
}
.brand { display: flex; align-items: center; gap: .625rem; font-weight: 600; }
.brand img { border-radius: 8px; }
.lang { display: flex; gap: .25rem; }
.lang button {
  background: transparent; color: var(--muted); border: 1px solid var(--line);
  padding: .375rem .625rem; border-radius: 999px; font: inherit; cursor: pointer;
}
.lang button[aria-pressed="true"] {
  color: var(--bg); background: var(--gold-hi); border-color: transparent; font-weight: 600;
}

main { max-width: 62rem; margin: 0 auto; padding: 0 1.25rem; }

.hero {
  text-align: center;
  padding: 4rem 0 3rem;
}
.hero-icon {
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 1px var(--line);
  margin-bottom: 1.5rem;
  width: min(45vw, 180px); height: auto;
}
.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.25rem);
  line-height: 1.1; margin: 0 0 1rem;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #fff 0%, #cfcfcf 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lede {
  color: var(--muted);
  max-width: 40rem; margin: 0 auto 2rem;
  font-size: clamp(1rem, 2.2vw, 1.125rem);
}
.cta {
  display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 1rem;
}
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .875rem 1.25rem; border-radius: 999px;
  text-decoration: none; font-weight: 600; font-size: 1rem;
  transition: transform .1s ease, background .15s ease;
}
.btn:active { transform: scale(.98); }
.btn.primary {
  background: linear-gradient(180deg, var(--gold-hi), var(--gold));
  color: #1a1200;
  box-shadow: 0 8px 24px rgba(212,162,74,.25);
}
.btn.primary:hover { filter: brightness(1.05); }
.btn.ghost {
  color: var(--fg); border: 1px solid var(--line); background: rgba(255,255,255,.02);
}
.btn.ghost:hover { background: rgba(255,255,255,.06); }
.soon { color: var(--muted); font-size: .9rem; }

.features {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
  padding: 2rem 0;
}
.feat {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.5rem;
}
.feat-num {
  font-size: 2rem; color: var(--gold-hi); font-weight: 700;
  line-height: 1; margin-bottom: .75rem;
}
.feat h2 { font-size: 1.125rem; margin: 0 0 .5rem; }
.feat p { margin: 0; color: var(--muted); font-size: .95rem; }

.rooms { padding: 3rem 0 1rem; }
.rooms h2 {
  font-size: clamp(1.5rem, 3.5vw, 2rem); margin: 0 0 1.5rem;
  letter-spacing: -0.01em;
}
.room-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
.room-grid figure {
  margin: 0; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); position: relative;
  aspect-ratio: 16 / 9; background: var(--bg-2);
}
.room-grid figure.wide { grid-column: 1 / -1; aspect-ratio: 32 / 9; }
.room-grid img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.room-grid figcaption {
  position: absolute; left: .875rem; bottom: .75rem;
  color: #fff; font-weight: 600; letter-spacing: .02em;
  text-shadow: 0 2px 8px rgba(0,0,0,.6);
  background: rgba(0,0,0,.35);
  padding: .25rem .625rem; border-radius: 999px;
  backdrop-filter: blur(4px);
}

.about {
  padding: 3rem 0 4rem;
  max-width: 42rem;
}
.about h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); margin: 0 0 1rem; letter-spacing: -0.01em; }
.about p { color: var(--muted); }

footer {
  border-top: 1px solid var(--line);
  padding: 2rem 1.25rem;
  text-align: center; color: var(--muted); font-size: .9rem;
}
footer a { color: var(--fg); text-decoration: none; border-bottom: 1px solid var(--line); }
footer a:hover { border-bottom-color: var(--gold-hi); }
footer .net { margin-top: .5rem; }

@media (max-width: 640px) {
  .features { grid-template-columns: 1fr; }
  .room-grid { grid-template-columns: 1fr; }
  .room-grid figure.wide { aspect-ratio: 16 / 9; }
  .topbar { padding: .75rem 1rem; }
  .brand span { display: none; }
}
