/* ============================================================
   GANGNAM ALPHABET — trionn.com 레퍼런스 다크 프리미엄 테마
   ============================================================ */
:root {
  --bg: #0a0a0a;
  --bg-soft: #111011;
  --panel: #161416;
  --line: rgba(212, 175, 106, .18);
  --text: #f3efe6;
  --text-dim: rgba(243, 239, 230, .62);
  --gold: #d4af6a;
  --gold-deep: #b08d4f;
  --font-display: "Archivo", "Pretendard Variable", sans-serif;
  --font-serif: "Marcellus", "Pretendard Variable", serif;
  --font-body: "Pretendard Variable", Pretendard, -apple-system, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--gold); color: #0a0a0a; }

/* ===== Cursor & progress ===== */
.cursor-dot {
  position: fixed; z-index: 9999; width: 14px; height: 14px;
  border-radius: 50%; background: var(--gold);
  pointer-events: none; mix-blend-mode: difference;
  transform: translate(-50%, -50%); transition: width .25s, height .25s, opacity .25s;
  opacity: 0;
}
.cursor-dot.is-on { opacity: 1; }
.cursor-dot.is-hover { width: 46px; height: 46px; }
@media (hover: none) { .cursor-dot { display: none; } }

.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 1001;
  height: 2px; width: 0; background: linear-gradient(90deg, var(--gold-deep), var(--gold));
}

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px clamp(20px, 4vw, 56px);
  transition: background .4s, backdrop-filter .4s, padding .4s;
}
.site-header.is-scrolled {
  background: rgba(10, 10, 10, .82);
  backdrop-filter: blur(14px);
  padding-top: 12px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(212, 175, 106, .08);
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 10px;
  border: 1px solid var(--gold);
  font-family: var(--font-serif); font-size: 24px; color: var(--gold);
  background: linear-gradient(145deg, rgba(212,175,106,.12), transparent);
}
.logo-mark.big { width: 64px; height: 64px; font-size: 36px; border-radius: 14px; }
.logo-text {
  display: flex; flex-direction: column;
  font-family: var(--font-display); font-weight: 900; font-size: 17px; letter-spacing: .14em;
}
.logo-text em { font-style: normal; font-size: 10px; font-weight: 500; letter-spacing: .32em; color: var(--gold); }
.gnb { display: flex; gap: clamp(16px, 2.4vw, 34px); }
.gnb a { font-size: 14px; color: var(--text-dim); letter-spacing: .02em; position: relative; transition: color .3s; }
.gnb a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: var(--gold); transition: width .35s var(--ease);
}
.gnb a:hover { color: var(--text); }
.gnb a:hover::after { width: 100%; }
.header-cta {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: .05em;
  border: 1px solid var(--line); border-radius: 999px; padding: 10px 20px;
  transition: border-color .3s, background .3s, color .3s;
}
.header-cta:hover { border-color: var(--gold); background: var(--gold); color: #0a0a0a; }
.cta-dot { width: 7px; height: 7px; border-radius: 50%; background: #58e07c; box-shadow: 0 0 10px #58e07c; animation: pulse 1.6s infinite; }
@keyframes pulse { 50% { opacity: .35; } }

.menu-toggle { display: none; background: none; border: 0; cursor: pointer; width: 40px; height: 40px; position: relative; z-index: 1101; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--text); margin: 6px auto; transition: transform .35s var(--ease), opacity .3s; }
.menu-toggle.is-open span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(8, 8, 8, .97); backdrop-filter: blur(20px);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 40px;
  opacity: 0; visibility: hidden; transition: opacity .45s var(--ease), visibility .45s;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 18px; text-align: center; }
.mobile-menu nav a { font-family: var(--font-display); font-weight: 900; font-size: clamp(28px, 8vw, 44px); letter-spacing: .02em; }
.mobile-menu nav a:hover { color: var(--gold); }
.mobile-menu-contact { text-align: center; color: var(--text-dim); font-size: 14px; }
.mobile-menu-contact a { font-family: var(--font-display); font-weight: 700; font-size: 22px; color: var(--gold); }

/* ===== Hero ===== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); animation: heroZoom 8s var(--ease) forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity 1.2s ease;
}
.hero-video.is-playing { opacity: 1; }
@media (prefers-reduced-motion: reduce) { .hero-video { display: none; } }
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,.55), rgba(10,10,10,.25) 40%, rgba(10,10,10,.92) 92%),
    radial-gradient(80% 60% at 30% 60%, transparent, rgba(10,10,10,.45));
}
.hero-inner { position: relative; z-index: 2; padding: 140px clamp(20px, 5vw, 72px) 120px; max-width: 1400px; }
.hero-eyebrow {
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: .5em; color: var(--gold); margin-bottom: 28px;
}
.hero-title {
  font-family: var(--font-display); font-weight: 900;
  font-size: clamp(46px, 9.2vw, 128px);
  line-height: 1.02; letter-spacing: -.015em; text-transform: uppercase;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .word { display: inline-block; transform: translateY(110%); animation: wordUp 1s var(--ease) forwards; }
.hero-title .line:nth-child(2) .word { animation-delay: .18s; }
.hero-title .word:nth-child(2) { animation-delay: .07s; }
.hero-title .word:nth-child(3) { animation-delay: .14s; }
.hero-title .line:nth-child(2) .word:nth-child(2) { animation-delay: .25s; }
.hero-title .line:nth-child(2) .word:nth-child(3) { animation-delay: .32s; }
@keyframes wordUp { to { transform: translateY(0); } }
.accent-line { color: var(--gold); }
.dot { color: var(--text); font-style: normal; }
.hero-sub { margin-top: 34px; font-size: clamp(15px, 1.6vw, 19px); color: var(--text-dim); }
.hero-sub strong { color: var(--gold); font-weight: 700; }
.hero-actions { display: flex; gap: 16px; margin-top: 44px; flex-wrap: wrap; }

.btn-gold, .btn-ghost {
  display: inline-block; padding: 16px 38px; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: .06em;
  transition: transform .3s var(--ease), background .3s, color .3s, border-color .3s, box-shadow .3s;
}
.btn-gold { background: var(--gold); color: #0d0b07; }
.btn-gold:hover { background: var(--text); transform: translateY(-3px); box-shadow: 0 14px 40px rgba(212,175,106,.25); }
.btn-ghost { border: 1px solid rgba(243,239,230,.3); color: var(--text); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

.hero-foot {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px clamp(20px, 5vw, 72px);
  font-family: var(--font-display); font-size: 11px; letter-spacing: .3em; color: var(--text-dim);
  border-top: 1px solid rgba(243,239,230,.08);
}
.hero-scroll { display: flex; align-items: center; gap: 10px; }
.hero-scroll i { width: 1px; height: 34px; background: linear-gradient(var(--gold), transparent); animation: scrollHint 1.8s infinite; }
@keyframes scrollHint { 50% { transform: scaleY(.4); opacity: .4; } }

/* ===== Marquee ===== */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding: 18px 0; background: var(--bg-soft); }
.marquee-track { display: flex; white-space: nowrap; animation: marquee 28s linear infinite; }
.marquee-track span {
  font-family: var(--font-display); font-weight: 900; font-size: clamp(18px, 2.4vw, 28px);
  letter-spacing: .12em; color: transparent; -webkit-text-stroke: 1px rgba(212,175,106,.55);
  padding-right: 12px;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== Sections base ===== */
.section { padding: clamp(90px, 12vw, 160px) clamp(20px, 5vw, 72px); max-width: 1440px; margin: 0 auto; }
.section-label {
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: .45em; color: var(--gold); margin-bottom: 34px;
}
.section-label.tight { margin-bottom: 14px; }
.section-title {
  font-family: var(--font-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(34px, 5.4vw, 72px); letter-spacing: -.01em; line-height: 1.05;
  background: linear-gradient(110deg, var(--text) 35%, var(--gold) 50%, var(--text) 65%);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: titleShimmer 5.5s linear infinite;
  width: fit-content;
}
@keyframes titleShimmer { to { background-position: -220% 0; } }
.section-desc { color: var(--text-dim); margin-top: 14px; font-size: clamp(14px, 1.5vw, 17px); }

/* ===== About ===== */
.about-statement {
  font-family: var(--font-body); font-weight: 700;
  font-size: clamp(26px, 4.4vw, 54px); line-height: 1.32; letter-spacing: -.02em;
  word-break: keep-all;
}
.about-statement span { display: block; }
.about-statement em { font-style: normal; color: var(--gold); }
.about-cols { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 64px); margin-top: 56px; color: var(--text-dim); max-width: 1080px; }

/* ===== Big words ===== */
.bigwords { text-align: left; }
.bigword {
  display: flex; align-items: baseline; gap: clamp(14px, 3vw, 36px);
  padding: clamp(14px, 2.5vw, 26px) 0; border-bottom: 1px solid var(--line);
  transition: padding-left .4s var(--ease);
}
.bigword:hover { padding-left: 18px; }
.bigword-en {
  font-family: var(--font-display); font-weight: 900; text-transform: uppercase;
  font-size: clamp(44px, 8.4vw, 116px); line-height: 1;
  color: transparent; -webkit-text-stroke: 1.5px rgba(243,239,230,.85);
  transition: color .45s var(--ease), -webkit-text-stroke-color .45s;
}
.bigword:hover .bigword-en { color: var(--gold); -webkit-text-stroke-color: var(--gold); }
.bigword-ko { color: var(--text-dim); font-size: clamp(13px, 1.6vw, 17px); white-space: nowrap; }
.bigwords-tail { margin-top: 34px; color: var(--gold); font-size: 14px; letter-spacing: .08em; }

/* ===== Facts ===== */
.facts { border-block: 1px solid var(--line); background: var(--bg-soft); max-width: none; }
.facts-head { max-width: 1440px; margin: 0 auto 56px; }
.facts-grid {
  max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.fact { background: var(--bg); padding: clamp(28px, 3.5vw, 52px) clamp(20px, 2.5vw, 40px); }
.fact-num {
  display: block; font-family: var(--font-display); font-weight: 900;
  font-size: clamp(44px, 5.5vw, 84px); line-height: 1; color: var(--gold); letter-spacing: -.02em;
}
.fact-label { display: block; margin-top: 16px; color: var(--text-dim); font-size: 14px; }

/* ===== Space ===== */
.space-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 56px; flex-wrap: wrap; }
.space-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.6vw, 36px); }
.space-card h3 { font-family: var(--font-display); font-weight: 900; letter-spacing: .06em; font-size: 19px; margin-top: 22px; }
.space-card p { color: var(--text-dim); font-size: 14.5px; margin-top: 10px; }
.space-thumb { overflow: hidden; border-radius: 18px; aspect-ratio: 4 / 3; border: 1px solid var(--line); }
.space-thumb img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.01); transition: transform .9s var(--ease), filter .9s; filter: saturate(.92); }
.space-card:hover .space-thumb img { transform: scale(1.07); filter: saturate(1.05); }

/* ===== System / accordion ===== */
.system-head { margin-bottom: 48px; }
.accordion { max-width: 980px; }
.acc-item { border-top: 1px solid var(--line); }
.acc-item:last-of-type { border-bottom: 1px solid var(--line); }
.acc-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: clamp(20px, 2.6vw, 30px) 6px;
  font-family: var(--font-body); font-weight: 700; font-size: clamp(17px, 2.2vw, 23px);
  transition: color .3s, padding-left .35s var(--ease);
}
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item summary:hover { color: var(--gold); padding-left: 14px; }
.acc-icon { position: relative; width: 18px; height: 18px; flex: none; }
.acc-icon::before, .acc-icon::after {
  content: ""; position: absolute; inset: 0; margin: auto; background: var(--gold); transition: transform .35s var(--ease);
}
.acc-icon::before { width: 18px; height: 1.5px; }
.acc-icon::after { width: 1.5px; height: 18px; }
.acc-item[open] .acc-icon::after { transform: rotate(90deg); }
.acc-body { padding: 0 6px clamp(22px, 2.6vw, 32px); color: var(--text-dim); max-width: 760px; }
.acc-body ul { display: grid; gap: 8px; }
.acc-body li strong { color: var(--text); }
.acc-note { margin-top: 16px; font-size: 13.5px; color: var(--gold); }
.system-cta { margin-top: 48px; }

/* ===== Reviews ===== */
.review-head { margin-bottom: 44px; }
.review-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 36px; }
.review-tab {
  cursor: pointer; background: none; color: var(--text-dim);
  border: 1px solid var(--line); border-radius: 999px; padding: 10px 22px;
  font-family: var(--font-body); font-size: 14px; transition: all .3s;
}
.review-tab:hover { color: var(--text); border-color: rgba(212,175,106,.5); }
.review-tab.is-active { background: var(--gold); border-color: var(--gold); color: #0d0b07; font-weight: 700; }
.review-panels { position: relative; max-width: 900px; }
.review-panel { display: none; }
.review-panel.is-active { display: block; animation: fadeUp .6s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } }
.review-panel p {
  font-family: var(--font-body); font-weight: 600;
  font-size: clamp(20px, 2.8vw, 30px); line-height: 1.5; letter-spacing: -.01em;
}
.review-panel footer { margin-top: 22px; color: var(--gold); font-size: 14px; letter-spacing: .06em; }

/* ===== Location ===== */
.location-head { margin-bottom: 48px; }
.location-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(24px, 4vw, 56px); align-items: start; }
.location-map { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16 / 10; }
.location-map iframe { width: 100%; height: 100%; border: 0; }
.location-naver-top { display: none; }
.location-info dl { display: grid; gap: 26px; }
.location-info dt { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: .4em; color: var(--gold); margin-bottom: 6px; }
.location-info dd { font-size: 16px; color: var(--text); }
.location-info dd a { border-bottom: 1px solid var(--gold); }
.location-info .btn-ghost { margin-top: 34px; }

/* ===== Final CTA ===== */
.cta-final {
  text-align: center; padding: clamp(110px, 14vw, 190px) 20px;
  border-top: 1px solid var(--line);
  background: radial-gradient(60% 70% at 50% 100%, rgba(212,175,106,.10), transparent 70%);
}
.cta-eyebrow { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: .5em; color: var(--gold); margin-bottom: 26px; }
.cta-huge { display: inline-block; font-family: var(--font-display); font-weight: 900; text-transform: uppercase; line-height: .95; letter-spacing: -.02em; font-size: clamp(72px, 16vw, 220px); }
.cta-huge .line { display: block; transition: letter-spacing .5s var(--ease); }
.cta-huge:hover .line { letter-spacing: .015em; }
.cta-huge .accent { color: transparent; -webkit-text-stroke: 2px var(--gold); }
.cta-huge:hover .accent { color: var(--gold); }
.cta-huge i { font-style: normal; color: var(--gold); }
.cta-tel { margin-top: 40px; }
.cta-tel a { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 3.4vw, 34px); letter-spacing: .04em; border-bottom: 2px solid var(--gold); padding-bottom: 4px; }
.cta-tel a:hover { color: var(--gold); }
.cta-channels { display: flex; justify-content: center; gap: 14px; margin-top: 30px; flex-wrap: wrap; }
.cta-sub { margin-top: 18px; color: var(--text-dim); font-size: 14px; }

/* ===== Footer ===== */
.site-footer { border-top: 1px solid var(--line); background: var(--bg-soft); }
.footer-top {
  max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 40px;
  padding: clamp(50px, 6vw, 80px) clamp(20px, 5vw, 72px);
}
.footer-domains { display: flex; flex-direction: column; gap: 6px; margin-top: 16px; }
.footer-domains a {
  width: fit-content; font-size: 13.5px; letter-spacing: .04em; color: var(--gold);
  border-bottom: 1px solid var(--line); padding-bottom: 2px;
  transition: border-color .3s, color .3s;
}
.footer-domains a:hover { border-color: var(--gold); }
.footer-brand { display: flex; gap: 20px; align-items: flex-start; }
.footer-brand p { font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: .08em; line-height: 1.6; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: var(--text-dim); font-size: 14px; width: fit-content; transition: color .3s, padding-left .3s; }
.footer-links a:hover { color: var(--gold); padding-left: 8px; }
.footer-tel { font-family: var(--font-display); font-weight: 900; font-size: clamp(26px, 3vw, 38px); color: var(--gold); letter-spacing: .02em; }
.footer-contact p { margin-top: 12px; color: var(--text-dim); font-size: 13.5px; }
.footer-sns { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-sns a { color: var(--text); border-bottom: 1px solid var(--line); padding-bottom: 2px; transition: color .3s, border-color .3s; }
.footer-sns a:hover { color: var(--gold); border-color: var(--gold); }
.mobile-menu-sns a { color: var(--gold); font-weight: 700; }
.footer-notice {
  text-align: center;
  color: var(--gold); font-weight: 700; font-size: 14px; letter-spacing: .03em;
  padding: 16px clamp(20px, 5vw, 72px);
  border-top: 1px solid rgba(212,175,106,.3);
  background: rgba(212,175,106,.08);
}
.footer-bottom {
  max-width: 1440px; margin: 0 auto;
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 22px clamp(20px, 5vw, 72px) 34px;
  border-top: 1px solid rgba(243,239,230,.07);
  color: rgba(243,239,230,.4); font-size: 12.5px;
}
@media (max-width: 860px) {
  .site-footer { padding-bottom: 20px; }
  .footer-bottom { padding-right: 88px; }
}

/* ===== Real photo galleries ===== */
.section-full { padding: clamp(90px, 12vw, 160px) 0; }
.lb { cursor: zoom-in; }

.arrival-grid {
  display: grid; gap: clamp(12px, 1.8vw, 24px);
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, minmax(180px, 30vw));
}
.arrival-item { position: relative; overflow: hidden; border-radius: 18px; border: 1px solid var(--line); margin: 0; }
.arrival-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.arrival-item:hover img { transform: scale(1.06); }
.arrival-item figcaption {
  position: absolute; left: 16px; bottom: 14px; z-index: 2;
  font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .12em;
  color: var(--text); text-shadow: 0 2px 12px rgba(0,0,0,.8);
  padding: 6px 14px; border-radius: 999px;
  background: rgba(10,10,10,.55); backdrop-filter: blur(8px); border: 1px solid rgba(212,175,106,.35);
}
.arrival-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(10,10,10,.55));
  pointer-events: none;
}
.a1 { grid-column: 1 / 5; grid-row: 1 / 3; }
.a2 { grid-column: 5 / 9; grid-row: 1 / 2; }
.a3 { grid-column: 9 / 13; grid-row: 1 / 3; }
.a4 { grid-column: 5 / 9; grid-row: 2 / 3; }

/* Rooms carousel */
.rooms { border-block: 1px solid var(--line); background: var(--bg-soft); }
.rooms-head {
  max-width: 1440px; margin: 0 auto 44px;
  padding: 0 clamp(20px, 5vw, 72px);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.rooms-nav { display: flex; gap: 10px; }
.rooms-nav button {
  cursor: pointer; width: 54px; height: 54px; border-radius: 50%;
  background: none; border: 1px solid var(--line); color: var(--gold); font-size: 20px;
  transition: background .3s, color .3s, border-color .3s, transform .3s;
}
.rooms-nav button:hover { background: var(--gold); color: #0d0b07; border-color: var(--gold); transform: translateY(-2px); }
.rooms-track {
  display: flex; gap: clamp(14px, 2vw, 26px);
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px clamp(20px, 5vw, 72px) 18px;
  scrollbar-width: none;
}
.rooms-track::-webkit-scrollbar { display: none; }
.room-slide {
  position: relative; flex: 0 0 clamp(280px, 38vw, 520px);
  scroll-snap-align: start; margin: 0;
  border-radius: 18px; overflow: hidden; border: 1px solid var(--line);
  transition: border-color .4s, box-shadow .4s, transform .4s var(--ease);
}
.room-slide:hover { border-color: var(--gold); box-shadow: 0 18px 50px rgba(212,175,106,.15); transform: translateY(-6px); }
.room-slide img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.room-no {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--font-display); font-weight: 900; font-size: 12px; letter-spacing: .2em;
  color: #0d0b07; background: var(--gold); padding: 6px 12px; border-radius: 999px;
}
.room-slide figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 34px 18px 14px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: .1em; color: var(--text);
  background: linear-gradient(180deg, transparent, rgba(10,10,10,.85));
}

/* Taste carousel */
.taste-head {
  max-width: 1440px; margin: 0 auto 44px; padding: 0 clamp(20px, 5vw, 72px);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.taste-track {
  display: flex; gap: clamp(12px, 1.6vw, 22px);
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px clamp(20px, 5vw, 72px) 18px;
  scrollbar-width: none;
}
.taste-track::-webkit-scrollbar { display: none; }
.taste-item { scroll-snap-align: start; }
.taste-item {
  position: relative; margin: 0; overflow: hidden; border-radius: 16px;
  border: 1px solid var(--line); flex: none;
  transition: transform .5s var(--ease), border-color .4s, box-shadow .4s;
}
.taste-item:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 16px 44px rgba(212,175,106,.16); }
.taste-item img { height: clamp(220px, 30vw, 360px); width: auto; display: block; }
.taste-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 46px 16px 14px;
  background: linear-gradient(180deg, transparent, rgba(10,10,10,.88) 70%);
  pointer-events: none;
}
.taste-item figcaption strong {
  display: block;
  font-family: var(--font-display); font-weight: 900; font-size: 15px; letter-spacing: .08em;
  color: var(--gold);
}
.taste-item figcaption span {
  display: block; margin-top: 5px;
  font-size: 12.5px; line-height: 1.55; color: rgba(243,239,230,.85);
  max-width: 340px;
}

/* Location visual */
.location-shots { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(12px, 1.6vw, 20px); margin-top: clamp(12px, 1.6vw, 20px); }
.location-shots figure { position: relative; margin: 0; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); }
.location-shots img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .7s var(--ease); }
.location-shots figure:hover img { transform: scale(1.05); }
.location-shots figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 26px 12px 10px;
  font-size: 12.5px; color: var(--text);
  background: linear-gradient(180deg, transparent, rgba(10,10,10,.85));
}

/* Column cards */
.column-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 32px); }
.column-card {
  display: flex; flex-direction: column; gap: 14px;
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid var(--line); border-radius: 18px;
  background: linear-gradient(160deg, rgba(212,175,106,.05), transparent 50%);
  transition: transform .4s var(--ease), border-color .4s, box-shadow .4s;
}
.column-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 18px 50px rgba(212,175,106,.12); }
.column-num { font-family: var(--font-display); font-weight: 900; font-size: 13px; letter-spacing: .3em; color: var(--gold); }
.column-card h3 { font-size: clamp(17px, 1.8vw, 21px); font-weight: 700; line-height: 1.45; letter-spacing: -.01em; }
.column-card p { color: var(--text-dim); font-size: 14px; flex: 1; }
.column-more { font-family: var(--font-display); font-weight: 700; font-size: 13px; letter-spacing: .1em; color: var(--gold); }
@media (max-width: 900px) { .column-grid { grid-template-columns: 1fr; } }

/* Article (column pages) */
.article-hero { padding: 150px clamp(20px, 5vw, 72px) 40px; max-width: 900px; margin: 0 auto; }
.article-hero .section-label { margin-bottom: 16px; }
.article-hero h1 {
  font-size: clamp(28px, 4.6vw, 48px); font-weight: 800; line-height: 1.3; letter-spacing: -.02em;
}
.article-meta { margin-top: 18px; color: var(--text-dim); font-size: 13.5px; letter-spacing: .04em; }
.article-body { max-width: 900px; margin: 0 auto; padding: 20px clamp(20px, 5vw, 72px) 90px; }
.article-body h2 {
  font-size: clamp(20px, 2.6vw, 28px); font-weight: 700; letter-spacing: -.01em;
  margin: 48px 0 16px; padding-top: 28px; border-top: 1px solid var(--line);
  color: var(--gold);
}
.article-body p { color: rgba(243,239,230,.82); margin-bottom: 16px; font-size: 16px; line-height: 1.85; }
.article-body strong { color: var(--text); }
.article-body ul { margin: 0 0 16px; padding-left: 2px; display: grid; gap: 8px; }
.article-body li { color: rgba(243,239,230,.82); padding-left: 22px; position: relative; }
.article-body li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: 12px; }
.article-body img { border-radius: 16px; border: 1px solid var(--line); margin: 10px 0 18px; }
.article-cta {
  margin-top: 56px; padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line); border-radius: 20px; text-align: center;
  background: radial-gradient(80% 100% at 50% 100%, rgba(212,175,106,.1), transparent);
}
.article-cta p { margin-bottom: 20px; color: var(--text); font-weight: 700; font-size: clamp(17px, 2vw, 21px); }
.article-nav { max-width: 900px; margin: 0 auto; padding: 0 clamp(20px, 5vw, 72px) 80px; display: flex; gap: 12px; flex-wrap: wrap; }
.article-nav a {
  border: 1px solid var(--line); border-radius: 999px; padding: 10px 20px;
  font-size: 13.5px; color: var(--text-dim); transition: all .3s;
}
.article-nav a:hover { border-color: var(--gold); color: var(--gold); }

/* Floating contact */
.floating-cta {
  position: fixed; right: clamp(14px, 2.5vw, 30px); bottom: clamp(14px, 2.5vw, 30px);
  z-index: 1500;
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
}
.float-btn {
  position: relative;
  display: flex; align-items: center; gap: 0;
  height: 56px; min-width: 56px; padding: 0 16px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
  transition: transform .3s var(--ease), box-shadow .3s, gap .35s var(--ease);
  overflow: hidden;
}
.float-btn:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.55); gap: 10px; }
.float-btn svg { width: 24px; height: 24px; flex: none; }
.float-btn span {
  max-width: 0; overflow: hidden; white-space: nowrap;
  font-family: var(--font-body); font-weight: 700; font-size: 14px;
  transition: max-width .35s var(--ease);
}
.float-btn:hover span, .float-btn:focus-visible span { max-width: 120px; }
.float-kakao { background: #fee500; color: #191600; }
.float-tg { background: #229ed9; color: #fff; }
.float-tel { background: linear-gradient(135deg, var(--gold), var(--gold-deep)); color: #14100a; }
.float-ring {
  position: absolute; inset: 0; border-radius: 999px;
  border: 2px solid rgba(212,175,106,.85);
  animation: floatRing 2s var(--ease) infinite;
  pointer-events: none;
}
@keyframes floatRing {
  0% { transform: scale(1); opacity: .9; }
  100% { transform: scale(1.45); opacity: 0; }
}
@media (max-width: 860px) {
  .float-btn { height: 52px; min-width: 52px; padding: 0 14px; }
  .float-btn span { display: none; }
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center; gap: 18px;
  background: rgba(6, 6, 6, .93); backdrop-filter: blur(10px);
  opacity: 0; visibility: hidden; transition: opacity .35s, visibility .35s;
  padding: 24px;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox figure { margin: 0; max-width: min(1100px, 86vw); text-align: center; }
.lightbox img {
  max-width: 100%; max-height: 78vh; margin: 0 auto;
  border-radius: 14px; border: 1px solid rgba(212,175,106,.5);
  box-shadow: 0 30px 90px rgba(0,0,0,.7);
}
.lightbox figcaption { margin-top: 14px; color: var(--gold); font-size: 14px; letter-spacing: .08em; }
.lightbox-close {
  position: absolute; top: 22px; right: 26px;
  cursor: pointer; background: none; border: 0; color: var(--text); font-size: 40px; line-height: 1;
  transition: color .3s, transform .3s;
}
.lightbox-close:hover { color: var(--gold); transform: rotate(90deg); }
.lightbox-nav {
  cursor: pointer; flex: none; width: 54px; height: 54px; border-radius: 50%;
  background: none; border: 1px solid rgba(212,175,106,.4); color: var(--gold); font-size: 20px;
  transition: background .3s, color .3s;
}
.lightbox-nav:hover { background: var(--gold); color: #0d0b07; }

/* ===== Reveal ===== */
.reveal, .reveal-lines span {
  opacity: 0; transform: translateY(36px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-in, .reveal-lines.is-in span { opacity: 1; transform: translateY(0); }
.reveal-lines span:nth-child(2) { transition-delay: .12s; }
.reveal-lines span:nth-child(3) { transition-delay: .24s; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .space-grid { grid-template-columns: 1fr; max-width: 640px; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .arrival-grid { grid-template-rows: repeat(2, minmax(160px, 34vw)); }
  .location-naver-top { display: inline-block; margin-bottom: 16px; }
  .location-info .btn-ghost { display: none; }
}
@media (max-width: 760px) {
  .arrival-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .a1 { grid-column: 1 / 2; grid-row: 1 / 3; }
  .a2 { grid-column: 2 / 3; grid-row: 1 / 2; }
  .a3 { grid-column: 2 / 3; grid-row: 2 / 3; }
  .a4 { grid-column: 1 / 3; grid-row: 3 / 4; }
  .arrival-item { min-height: 170px; }
  .lightbox-nav { display: none; }
  .lightbox figure { max-width: 94vw; }
}
@media (max-width: 860px) {
  .gnb, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .about-cols { grid-template-columns: 1fr; }
  .hero-foot span:first-child { display: none; }
}
@media (max-width: 520px) {
  .facts-grid { grid-template-columns: 1fr; }
  .bigword-ko { white-space: normal; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal, .reveal-lines span { opacity: 1; transform: none; }
}
