﻿/* ============================================================
   강남블랙홀 (GANGNAM BLACKHOLE)
   디자인 언어: trionn.com 레퍼런스
   - 니어블랙 배경 + 부드러운 회색 텍스트 (순백 금지)
   - 초대형 그로테스크, weight 400~500, 극단적 네거티브 트래킹, 행간 1.0
   - 색은 장식이 아니라 '발광' — 링과 미세한 악센트에만
   - 버튼 대신 헤어라인 밑줄 링크 + 화살표
   - 등장은 블러 인
   ============================================================ */
:root {
  --bg: #040508;
  --bg-soft: #08090d;
  --line: rgba(216, 216, 216, .12);
  --line-soft: rgba(216, 216, 216, .07);
  /* 어두운 배경에서는 같은 값도 더 흐리게 읽힌다. 레퍼런스(#d8d8d8)보다 올림. */
  --text: #ebebeb;
  --text-mid: rgba(235, 235, 235, .88);
  --text-dim: rgba(235, 235, 235, .76);
  /* 라벨·캡션 전용. 본문 글자에는 쓰지 말 것 */
  --text-faint: rgba(235, 235, 235, .58);
  --vio: #b57bff;
  --amb: #ff9d4d;
  --cyan: #5fd8ff;
  --disc: linear-gradient(92deg, var(--amb), var(--vio) 52%, var(--cyan));

  --font-display: "Familjen Grotesk", "Pretendard Variable", sans-serif;
  --font-body: "Pretendard Variable", Pretendard, "Familjen Grotesk", -apple-system, sans-serif;

  /* 트래킹: 라틴은 아주 좁게, 한글은 자소가 뭉치지 않을 만큼만 */
  --tr-lat: -.075em;
  --tr-ko: -.038em;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --pad-x: clamp(20px, 5vw, 80px);
}

* { 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: 17px;
  line-height: 1.78;
  overflow-x: hidden;
  /* antialiased는 어두운 배경에서 글자를 얇게 만들어 흐려 보이게 한다.
     다크 테마에서는 기본(서브픽셀) 렌더링이 훨씬 또렷하다. */
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--vio); color: #050308; }

/* 라틴 런: 초대형에서 자간을 더 조인다 */
.lat { font-family: var(--font-display); letter-spacing: var(--tr-lat); }

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

.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 1001;
  height: 1px; width: 0; background: var(--vio); opacity: .8;
}

/* ===== Header ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px var(--pad-x);
  transition: background .5s var(--ease), backdrop-filter .5s, padding .5s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(4, 5, 8, .72);
  backdrop-filter: blur(16px);
  padding-top: 14px; padding-bottom: 14px;
  border-bottom: 1px solid var(--line-soft);
}
.logo { display: flex; align-items: center; gap: 11px; }
.logo-mark {
  position: relative; display: grid; place-items: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: #050308; flex: none;
  box-shadow: 0 0 0 1px rgba(216,216,216,.22);
}
.logo-mark::before {
  content: ""; position: absolute; inset: -2px; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, var(--amb), var(--vio), var(--cyan), transparent 82%);
  -webkit-mask: radial-gradient(circle, transparent 56%, #000 58%);
  mask: radial-gradient(circle, transparent 56%, #000 58%);
  animation: spin 9s linear infinite; opacity: .9;
}
.logo-mark::after {
  content: ""; width: 42%; height: 42%; border-radius: 50%; background: #030206;
}
.logo-mark.big { width: 40px; height: 40px; }
@keyframes spin { to { transform: rotate(360deg); } }
.logo-text {
  display: flex; flex-direction: column; line-height: 1.15;
  font-family: var(--font-display); font-weight: 500; font-size: 17px; letter-spacing: -.02em;
}
.logo-text em {
  font-style: normal; font-size: 10px; font-weight: 400;
  letter-spacing: .22em; color: var(--text-faint); margin-top: 2px;
}

.gnb { display: flex; gap: clamp(18px, 2.6vw, 38px); }
.gnb a {
  font-family: var(--font-body); font-size: 14px; color: var(--text-dim);
  letter-spacing: .01em; position: relative; transition: color .35s var(--ease);
}
.gnb a::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 1px; width: 0;
  background: currentColor; transition: width .45s var(--ease);
}
.gnb a:hover { color: var(--text); }
.gnb a:hover::after { width: 100%; }

/* 헤더 CTA — 알약 버튼이 아니라 헤어라인 밑줄 링크 */
.header-cta {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 400; font-size: 14px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--text);
  padding-bottom: 7px; border-bottom: 1px solid var(--line);
  transition: border-color .4s var(--ease), color .4s;
}
.header-cta:hover { border-color: var(--text); }
.cta-dot { width: 5px; height: 5px; border-radius: 50%; background: #5fe08c; box-shadow: 0 0 8px #5fe08c; animation: pulse 2s infinite; }
@keyframes pulse { 50% { opacity: .3; } }

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

.mobile-menu {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(4, 5, 8, .985); backdrop-filter: blur(30px);
  display: grid; grid-template-rows: 1fr auto; align-items: start;
  /* 헤더(로고·닫기 버튼) 아래에서 시작하고, 노치·홈바를 피한다 */
  padding: calc(env(safe-area-inset-top, 0px) + 104px) var(--pad-x) calc(env(safe-area-inset-bottom, 0px) + 34px);
  opacity: 0; visibility: hidden;
  transition: opacity .45s var(--ease), visibility .45s;
  overflow-y: auto; overscroll-behavior: contain;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }

.mobile-menu nav { display: flex; flex-direction: column; align-content: start; counter-reset: mm; }
.mobile-menu nav a {
  counter-increment: mm;
  position: relative; display: flex; align-items: baseline; gap: 16px;
  padding: 19px 2px;                    /* 터치 영역 최소 56px 확보 */
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--font-body); font-weight: 500;
  font-size: clamp(23px, 6.9vw, 31px);
  letter-spacing: var(--tr-ko); line-height: 1.25;
  color: var(--text-mid);
  opacity: 0; transform: translateY(16px); filter: blur(7px);
  transition: color .3s var(--ease);
}
.mobile-menu nav a:first-child { border-top: 1px solid var(--line-soft); }
/* 번호는 CSS 카운터로 — HTML 수정 없이 리듬을 만든다 */
.mobile-menu nav a::before {
  content: "0" counter(mm);
  flex: none; min-width: 24px;
  font-family: var(--font-display); font-weight: 400; font-size: 12px;
  letter-spacing: .18em; color: var(--text-faint);
  transition: color .3s;
}
.mobile-menu nav a::after {
  content: "→"; margin-left: auto; flex: none;
  font-size: 16px; color: var(--text-faint);
  transition: transform .4s var(--ease), color .3s;
}
.mobile-menu nav a:active { color: var(--text); }
.mobile-menu nav a:active::before, .mobile-menu nav a:active::after { color: var(--vio); }
.mobile-menu nav a:active::after { transform: translateX(5px); }

/* 열릴 때만 순차 등장 — 닫으면 초기화되어 다음에 다시 재생된다 */
.mobile-menu.is-open nav a { animation: mmIn .6s var(--ease) forwards; }
@keyframes mmIn { to { opacity: 1; transform: translateY(0); filter: blur(0); } }
.mobile-menu.is-open nav a:nth-child(1) { animation-delay: .05s; }
.mobile-menu.is-open nav a:nth-child(2) { animation-delay: .10s; }
.mobile-menu.is-open nav a:nth-child(3) { animation-delay: .15s; }
.mobile-menu.is-open nav a:nth-child(4) { animation-delay: .20s; }
.mobile-menu.is-open nav a:nth-child(5) { animation-delay: .25s; }
.mobile-menu.is-open nav a:nth-child(6) { animation-delay: .30s; }

.mobile-menu-contact {
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid var(--line);
  opacity: 0; transform: translateY(16px); filter: blur(7px);
}
.mobile-menu.is-open .mobile-menu-contact { animation: mmIn .6s var(--ease) .36s forwards; }
.mobile-menu-contact::before {
  content: "RESERVATION · 24H";
  display: block; margin-bottom: 12px;
  font-family: var(--font-display); font-weight: 400; font-size: 11px;
  letter-spacing: .28em; color: var(--text-faint);
}
.mobile-menu-contact a {
  display: inline-block;
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(31px, 8.4vw, 40px); letter-spacing: -.035em; line-height: 1.1;
  color: var(--text);
}
.mobile-menu-contact p {
  margin-top: 12px; font-size: 13.5px; line-height: 1.7;
  color: var(--text-dim); letter-spacing: .01em;
}
@media (prefers-reduced-motion: reduce) {
  .mobile-menu nav a, .mobile-menu-contact { opacity: 1; transform: none; filter: none; }
}

/* ===== Hero ===== */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
/* 사진은 '보이는 이미지'가 아니라 어둠 속 질감으로만 존재 */
/* 히어로는 추상 브랜드 이미지(링) 전용. 실사진은 여기 깔면 어둠에 묻혀
   오히려 죽으므로 콜라주·룸 캐러셀·오시는 길에서 크게 보여준다. */
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .30; filter: saturate(.75) contrast(1.05);
  transform: scale(1.06); animation: heroZoom 14s 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.4s ease; }
.hero-video.is-playing { opacity: .3; }
@media (prefers-reduced-motion: reduce) { .hero-video { display: none; } }
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(4,5,8,.75), rgba(4,5,8,.35) 45%, rgba(4,5,8,.97)),
    radial-gradient(70% 60% at 22% 50%, rgba(4,5,8,.5), rgba(4,5,8,.88));
}

/* 사건의 지평선 — 은은한 발광 링 하나만 */
.event-horizon {
  position: absolute; z-index: 1;
  top: 52%; left: 68%; translate: -50% -50%;
  width: clamp(300px, 46vw, 660px); aspect-ratio: 1;
  border-radius: 50%; pointer-events: none;
  background: conic-gradient(from 210deg,
    rgba(255,157,77,0) 0deg, rgba(255,157,77,.5) 55deg,
    rgba(181,123,255,.62) 145deg, rgba(95,216,255,.34) 225deg,
    rgba(181,123,255,.18) 300deg, rgba(255,157,77,0) 360deg);
  -webkit-mask: radial-gradient(circle, transparent 44%, #000 47%, #000 50%, transparent 53%);
  mask: radial-gradient(circle, transparent 44%, #000 47%, #000 50%, transparent 53%);
  filter: blur(1px);
  animation: spin 60s linear infinite;
  opacity: .8;
}
.event-horizon::after {
  content: ""; position: absolute; inset: 20%; border-radius: 50%;
  box-shadow: 0 0 120px 40px rgba(181,123,255,.10);
}
@media (max-width: 900px) { .event-horizon { left: 50%; top: 40%; opacity: .4; } }
@media (prefers-reduced-motion: reduce) { .event-horizon { animation: none; } }

.hero-inner { position: relative; z-index: 2; padding: 150px var(--pad-x) 130px; max-width: 1560px; width: 100%; }
.hero-eyebrow {
  font-family: var(--font-display); font-size: 12px; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase; color: var(--text-faint);
  margin-bottom: 40px;
}
.hero-title {
  font-family: var(--font-body); font-weight: 500;
  font-size: clamp(44px, 8.4vw, 132px);
  line-height: 1.0; letter-spacing: var(--tr-ko);
  color: var(--text); max-width: 15ch;
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: .04em; }
/* 브랜드명은 DOM에 "강남블랙홀"로 붙여 두고(구글 정확 키워드 매칭),
   시각적 간격만 CSS로 준다 — 공백 문자를 넣으면 "강남 블랙홀"이 되어 키워드가 깨진다 */
.hero-title .line:first-child .word + .word { margin-left: .17em; }
.hero-title .word {
  display: inline-block; transform: translateY(105%);
  filter: blur(10px); opacity: 0;
  animation: wordIn 1.15s var(--ease) forwards;
}
@keyframes wordIn { to { transform: translateY(0); filter: blur(0); opacity: 1; } }
.hero-title .word:nth-child(2) { animation-delay: .09s; }
.hero-title .word:nth-child(3) { animation-delay: .18s; }
.hero-title .line:nth-child(2) .word { animation-delay: .22s; }
.hero-title .line:nth-child(2) .word:nth-child(2) { animation-delay: .31s; }
.hero-title .line:nth-child(2) .word:nth-child(3) { animation-delay: .40s; }
/* 두 번째 줄만 살짝 흐리게 — 색이 아니라 명도로 위계 */
.accent-line { color: var(--text-mid); }
.dot { font-style: normal; color: var(--vio); }

.hero-sub {
  margin-top: 42px; font-size: clamp(15px, 1.5vw, 19px); line-height: 1.85;
  color: var(--text-dim); max-width: 48ch; word-break: keep-all;
}
.hero-sub strong { color: var(--text); font-weight: 500; }

.hero-actions { display: flex; gap: clamp(22px, 3.4vw, 52px); margin-top: 54px; flex-wrap: wrap; align-items: center; }

/* ===== 링크형 CTA (알약 버튼 폐기) ===== */
.btn-gold, .btn-ghost {
  position: relative; display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--font-display); font-weight: 400; font-size: 14px;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 0 0 12px; border: 0; border-bottom: 1px solid var(--line);
  color: var(--text); background: none;
  transition: color .4s var(--ease), border-color .4s var(--ease);
}
.btn-gold::after, .btn-ghost::after {
  content: "→"; font-size: 16px; letter-spacing: 0;
  transition: transform .45s var(--ease);
}
.btn-gold:hover, .btn-ghost:hover { border-color: var(--text); }
.btn-gold:hover::after, .btn-ghost:hover::after { transform: translateX(7px); }
.btn-gold { border-bottom-color: rgba(181,123,255,.55); }
.btn-gold:hover { border-bottom-color: var(--vio); color: #fff; }
.btn-ghost { color: var(--text-dim); }
.btn-ghost:hover { color: var(--text); }

.hero-foot {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px var(--pad-x);
  font-family: var(--font-display); font-size: 11px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--text-faint);
  border-top: 1px solid var(--line-soft);
}
.hero-scroll { display: flex; align-items: center; gap: 12px; }
.hero-scroll i { width: 1px; height: 30px; background: linear-gradient(var(--text-faint), transparent); animation: scrollHint 2.2s infinite; }
@keyframes scrollHint { 50% { transform: scaleY(.35); opacity: .3; } }

/* ===== Marquee — 초대형 아웃라인 타이포가 화면 밖으로 흐른다 ===== */
.marquee { overflow: hidden; border-block: 1px solid var(--line-soft); padding: 26px 0; background: transparent; }
.marquee-track { display: flex; white-space: nowrap; animation: marquee 42s linear infinite; }
.marquee-track span {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(31px, 5.4vw, 76px); letter-spacing: var(--tr-lat); line-height: 1;
  color: transparent; -webkit-text-stroke: 1px rgba(216,216,216,.20);
  padding-right: 26px;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== Sections ===== */
.section { padding: clamp(110px, 15vw, 210px) var(--pad-x); max-width: 1560px; margin: 0 auto; }
.section-full { padding: clamp(110px, 15vw, 210px) 0; }
.section-label {
  font-family: var(--font-display); font-size: 12px; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase; color: var(--text-faint);
  margin-bottom: 44px; width: fit-content;
}
.section-label.tight { margin-bottom: 20px; }
.section-title {
  font-family: var(--font-body); font-weight: 500;
  font-size: clamp(33px, 5vw, 78px); letter-spacing: var(--tr-ko); line-height: 1.04;
  color: var(--text); width: fit-content; max-width: 18ch; word-break: keep-all;
}
.section-desc { color: var(--text-dim); margin-top: 22px; font-size: clamp(16px, 1.35vw, 18px); line-height: 1.75; max-width: 52ch; word-break: keep-all; }

/* ===== About ===== */
.about-statement {
  font-family: var(--font-body); font-weight: 500;
  font-size: clamp(29px, 5vw, 76px); line-height: 1.06; letter-spacing: var(--tr-ko);
  word-break: keep-all; color: var(--text); max-width: 20ch;
}
.about-statement span { display: block; }
.about-statement span + span { color: var(--text-mid); }
.about-statement em { font-style: normal; color: var(--vio); }
.about-cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 80px) clamp(28px, 5vw, 90px);
  margin-top: clamp(60px, 8vw, 110px); color: var(--text-dim);
  max-width: 1060px; word-break: keep-all; font-size: 16px; line-height: 1.9;
}
.about-cols strong { color: var(--text); font-weight: 500; }

/* ===== Big words — 화면 밖으로 흘러나가는 초대형 타이포 ===== */
.bigwords { max-width: none; padding-inline: 0; }
.bigwords > .section-label { margin-left: var(--pad-x); }
.bigwords-tail { margin: 44px var(--pad-x) 0; color: var(--text-faint); font-size: 14px; letter-spacing: .04em; }
.bigword {
  display: flex; align-items: baseline; gap: clamp(16px, 3vw, 44px);
  padding: clamp(16px, 2.4vw, 30px) var(--pad-x);
  border-bottom: 1px solid var(--line-soft);
  transition: background .5s var(--ease);
}
.bigword:first-of-type { border-top: 1px solid var(--line-soft); }
.bigword:hover { background: rgba(216,216,216,.02); }
.bigword-en {
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  font-size: clamp(52px, 11vw, 168px); line-height: .92; letter-spacing: var(--tr-lat);
  color: var(--text-faint); white-space: nowrap;
  transition: color .55s var(--ease);
}
.bigword:hover .bigword-en { color: var(--text); }
.bigword-ko { color: var(--text-dim); font-size: clamp(13px, 1.45vw, 17px); white-space: nowrap; }

/* ===== Facts ===== */
.facts { border-block: 1px solid var(--line-soft); background: transparent; max-width: none; }
.facts-head { max-width: 1560px; margin: 0 auto clamp(56px, 7vw, 90px); }
.facts-grid {
  max-width: 1560px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-soft); border-left: 1px solid var(--line-soft);
}
.fact {
  padding: clamp(30px, 3.4vw, 54px) clamp(20px, 2.2vw, 36px);
  border-right: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft);
}
.fact-num {
  display: block; font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 4.6vw, 74px); line-height: 1;
  letter-spacing: var(--tr-lat); color: var(--text);
}
.fact-label { display: block; margin-top: 20px; color: var(--text-dim); font-size: 15px; line-height: 1.72; word-break: keep-all; }

/* ===== Arrival collage ===== */
.space-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: clamp(50px, 6vw, 80px); flex-wrap: wrap; }
.lb { cursor: zoom-in; }
.arrival-grid {
  display: grid; gap: clamp(10px, 1.2vw, 16px);
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, minmax(180px, 30vw));
}
.arrival-item { position: relative; overflow: hidden; border-radius: 2px; margin: 0; background: var(--bg-soft); }
.arrival-item img { width: 100%; height: 100%; object-fit: cover; opacity: .82; transition: transform 1.1s var(--ease), opacity .6s; }
.arrival-item:hover img { transform: scale(1.05); opacity: 1; }
.arrival-item figcaption {
  position: absolute; left: 18px; bottom: 16px; z-index: 2;
  font-family: var(--font-display); font-weight: 400; font-size: 12px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--text);
  text-shadow: 0 2px 14px rgba(0,0,0,.9);
}
.arrival-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(4,5,8,.7)); 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 / Taste carousels ===== */
.rooms { border-block: 1px solid var(--line-soft); }
.rooms-head, .taste-head {
  max-width: 1560px; margin: 0 auto clamp(46px, 5vw, 70px); padding: 0 var(--pad-x);
  display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap;
}
.rooms-nav { display: flex; gap: 8px; }
.rooms-nav button {
  cursor: pointer; width: 50px; height: 50px; border-radius: 50%;
  background: none; border: 1px solid var(--line); color: var(--text-dim); font-size: 18px;
  transition: border-color .4s, color .4s, transform .4s var(--ease);
}
.rooms-nav button:hover { border-color: var(--text); color: var(--text); transform: translateY(-2px); }
.rooms-track, .taste-track {
  display: flex; gap: clamp(10px, 1.2vw, 18px);
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px var(--pad-x) 18px; scrollbar-width: none;
}
.rooms-track::-webkit-scrollbar, .taste-track::-webkit-scrollbar { display: none; }
.room-slide {
  position: relative; flex: 0 0 clamp(280px, 36vw, 560px);
  scroll-snap-align: start; margin: 0; overflow: hidden; border-radius: 2px;
  transition: transform .6s var(--ease);
}
.room-slide img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; opacity: .82; transition: opacity .6s, transform 1.1s var(--ease); }
.room-slide:hover img { opacity: 1; transform: scale(1.04); }
.room-no {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  font-family: var(--font-display); font-weight: 400; font-size: 11px;
  letter-spacing: .24em; color: var(--text); text-shadow: 0 2px 10px rgba(0,0,0,.9);
}
.room-slide figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 40px 16px 16px;
  font-family: var(--font-body); font-weight: 500; font-size: 15px;
  letter-spacing: -.01em; color: var(--text);
  background: linear-gradient(180deg, transparent, rgba(4,5,8,.9));
}
.taste-item {
  position: relative; margin: 0; overflow: hidden; border-radius: 2px; flex: none;
  scroll-snap-align: start; transition: transform .6s var(--ease);
}
.taste-item img { height: clamp(230px, 30vw, 380px); width: auto; display: block; opacity: .84; transition: opacity .6s; }
.taste-item:hover img { opacity: 1; }
.taste-item figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 52px 18px 18px;
  background: linear-gradient(180deg, transparent, rgba(4,5,8,.94) 72%); pointer-events: none;
}
.taste-item figcaption strong {
  display: block; font-family: var(--font-body); font-weight: 500;
  font-size: 16px; letter-spacing: -.01em; color: var(--text);
}
.taste-item figcaption span {
  display: block; margin-top: 7px; font-size: 13.5px; line-height: 1.65;
  color: var(--text-dim); max-width: 330px; word-break: keep-all;
}

/* ===== Cards (managers / stage / events / hub / column) ===== */
.managers { border-bottom: 1px solid var(--line-soft); }
.manager-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: clamp(50px, 6vw, 80px);
  border-top: 1px solid var(--line-soft);
}
.manager-card {
  position: relative; padding: clamp(32px, 3.6vw, 56px) clamp(24px, 2.6vw, 44px) clamp(38px, 4vw, 64px);
  border-bottom: 1px solid var(--line-soft); border-right: 1px solid var(--line-soft);
  overflow: hidden; transition: background .5s var(--ease);
}
.manager-card:first-child { border-left: 1px solid var(--line-soft); }
.manager-card:hover { background: rgba(216,216,216,.02); }
.manager-card .mc-ring {
  position: absolute; right: -56px; top: -56px; width: 170px; height: 170px; border-radius: 50%;
  background: conic-gradient(from 0deg, transparent, var(--vio), transparent 70%);
  -webkit-mask: radial-gradient(circle, transparent 64%, #000 66%);
  mask: radial-gradient(circle, transparent 64%, #000 66%);
  opacity: .18; animation: spin 26s linear infinite;
}
.mc-tag {
  display: block; margin-bottom: 22px;
  font-family: var(--font-display); font-weight: 400; font-size: 11px;
  letter-spacing: .28em; text-transform: uppercase; color: var(--text-faint);
}
.manager-card h3 {
  font-family: var(--font-body); font-weight: 500;
  font-size: clamp(20px, 2vw, 27px); letter-spacing: var(--tr-ko); line-height: 1.3;
  color: var(--text); word-break: keep-all;
}
.manager-card p { color: var(--text-dim); font-size: 16px; line-height: 1.85; margin-top: 16px; word-break: keep-all; }

.manager-visual { position: relative; margin-top: clamp(40px, 5vw, 70px); overflow: hidden; border-radius: 2px; }
.manager-visual img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; opacity: .8; }
.manager-visual::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(4,5,8,.2), rgba(4,5,8,.9)); pointer-events: none;
}
.manager-visual figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: clamp(26px, 4vw, 56px);
  font-family: var(--font-body); font-weight: 500;
  font-size: clamp(17px, 2.2vw, 29px); letter-spacing: var(--tr-ko); line-height: 1.35;
  color: var(--text); word-break: keep-all; max-width: 24ch;
}

.hub-grid, .column-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line-soft); }
.column-grid { grid-template-columns: repeat(3, 1fr); }
.hub-card, .column-card {
  display: flex; flex-direction: column; gap: 14px;
  padding: clamp(30px, 3.4vw, 52px) clamp(24px, 2.4vw, 40px) clamp(36px, 4vw, 60px);
  border-bottom: 1px solid var(--line-soft); border-right: 1px solid var(--line-soft);
  transition: background .5s var(--ease);
}
.hub-card:first-child, .column-card:first-child { border-left: 1px solid var(--line-soft); }
.hub-card:hover, .column-card:hover { background: rgba(216,216,216,.02); }
.hub-card .hub-tag, .column-num {
  font-family: var(--font-display); font-weight: 400; font-size: 11px;
  letter-spacing: .28em; text-transform: uppercase; color: var(--text-faint); width: fit-content;
}
.hub-card h3, .column-card h3 {
  font-family: var(--font-body); font-weight: 500;
  font-size: clamp(19px, 1.9vw, 24px); letter-spacing: var(--tr-ko); line-height: 1.36;
  color: var(--text); word-break: keep-all;
}
.hub-card p, .column-card p { color: var(--text-dim); font-size: 15.5px; line-height: 1.8; flex: 1; word-break: keep-all; }
.hub-more, .column-more {
  font-family: var(--font-display); font-weight: 400; font-size: 12px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--text-mid);
  transition: color .35s;
}
.hub-card:hover .hub-more, .column-card:hover .column-more { color: var(--text); }

/* ===== Steps ===== */
.step-list { counter-reset: step; display: grid; margin-top: clamp(50px, 6vw, 80px); border-top: 1px solid var(--line-soft); }
.step {
  counter-increment: step;
  display: grid; grid-template-columns: clamp(80px, 9vw, 150px) 1fr; gap: clamp(18px, 3vw, 50px);
  padding: clamp(30px, 3.6vw, 52px) 0; border-bottom: 1px solid var(--line-soft);
  align-items: start; transition: padding-left .5s var(--ease);
}
.step:hover { padding-left: 16px; }
.step::before {
  content: "0" counter(step);
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(35px, 4.4vw, 62px); line-height: .9; letter-spacing: var(--tr-lat);
  color: var(--text-faint);
}
.step:hover::before { color: var(--text-mid); }
.step h3 {
  font-family: var(--font-body); font-weight: 500;
  font-size: clamp(19px, 2.1vw, 28px); letter-spacing: var(--tr-ko); line-height: 1.3; color: var(--text);
  word-break: keep-all;
}
.step p { color: var(--text-dim); margin-top: 14px; font-size: 15.5px; line-height: 1.85; max-width: 62ch; word-break: keep-all; }

/* ===== Accordion ===== */
.system-head { margin-bottom: clamp(50px, 6vw, 80px); }
.accordion { max-width: 1060px; }
.acc-item { border-top: 1px solid var(--line-soft); }
.acc-item:last-of-type { border-bottom: 1px solid var(--line-soft); }
.acc-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 22px;
  padding: clamp(24px, 2.8vw, 36px) 2px;
  font-family: var(--font-body); font-weight: 500;
  font-size: clamp(18px, 2.1vw, 26px); letter-spacing: var(--tr-ko); line-height: 1.35;
  color: var(--text-mid); word-break: keep-all;
  transition: color .4s var(--ease), padding-left .45s var(--ease);
}
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item summary:hover, .acc-item[open] summary { color: var(--text); }
.acc-item summary:hover { padding-left: 12px; }
.acc-icon { position: relative; width: 16px; height: 16px; flex: none; }
.acc-icon::before, .acc-icon::after {
  content: ""; position: absolute; inset: 0; margin: auto; background: currentColor;
  transition: transform .45s var(--ease); opacity: .7;
}
.acc-icon::before { width: 16px; height: 1px; }
.acc-icon::after { width: 1px; height: 16px; }
.acc-item[open] .acc-icon::after { transform: rotate(90deg); }
/* 아코디언 본문은 '읽는 글'이다 — 라벨 톤이 아니라 본문 톤으로 유지 */
.acc-body { padding: 0 2px clamp(28px, 3vw, 42px); color: var(--text-mid); max-width: 76ch; word-break: keep-all; font-size: 16.5px; line-height: 1.95; }
.acc-body ul { display: grid; gap: 13px; }
.acc-body li strong, .acc-body p strong { color: #f0f0f0; font-weight: 600; }
/* 혜택·단서 조항 콜아웃 — 회색 부연설명이 아니라 '읽고 가야 할 한 줄'로 보이게.
   .article-body p (0,1,1) 보다 높은 특정성이 필요해 2중 클래스 선택자를 함께 둔다. */
.acc-note,
.article-body .acc-note {
  margin-top: 26px; padding: 15px 18px;
  font-size: 15.5px; line-height: 1.8; word-break: keep-all;
  color: #ffc48f;
  background: rgba(255, 157, 77, .07);
  border-left: 2px solid var(--amb);
  border-radius: 0 3px 3px 0;
}
/* .acc-body p strong 보다 우선해야 콜아웃 안에서 흰색으로 튀지 않는다 */
.acc-body .acc-note strong,
.article-body .acc-note strong { color: #ffdcb8; font-weight: 600; }
.article-body .acc-note a { color: #ffdcb8; border-bottom-color: rgba(255,157,77,.5); }
.article-body .acc-note a:hover { border-bottom-color: #ffdcb8; }
.system-cta { margin-top: clamp(46px, 5vw, 70px); }

/* 가격표 */
.price-table { width: 100%; border-collapse: collapse; margin: 6px 0 4px; font-size: 15.5px; }
.price-table th, .price-table td { padding: 17px 10px; border-bottom: 1px solid var(--line-soft); text-align: left; }
.price-table th {
  font-family: var(--font-display); font-weight: 500; font-size: 12px;
  letter-spacing: .24em; text-transform: uppercase; color: var(--text-dim);
}
.price-table td { color: var(--text-mid); font-size: 16px; }
/* 금액은 이 표에서 가장 먼저 읽혀야 하는 정보 */
.price-table td:last-child { text-align: right; color: #f0f0f0; font-weight: 600; white-space: nowrap; font-size: 16.5px; }
.price-table.wide { margin: 10px 0 26px; }
.price-table.wide td:first-child { color: var(--text); font-weight: 500; white-space: nowrap; }

/* 계산 예시 */
.calc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin: 26px 0 16px; border-top: 1px solid var(--line-soft); }
.calc-card { padding: clamp(24px, 2.6vw, 34px) clamp(18px, 2vw, 26px); border-bottom: 1px solid var(--line-soft); border-right: 1px solid var(--line-soft); }
.calc-card:first-child { border-left: 1px solid var(--line-soft); }
.calc-title {
  font-family: var(--font-display); font-weight: 400; font-size: 11px;
  letter-spacing: .24em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 22px;
}
.calc-lines { display: grid; gap: 12px; margin: 0 0 20px; padding: 0; }
.calc-lines li { display: flex; justify-content: space-between; gap: 14px; font-size: 15px; color: var(--text-mid); padding-left: 0; }
.calc-lines li::before { content: none; }
.calc-lines li span:last-child { color: #f0f0f0; font-weight: 500; white-space: nowrap; }
.calc-total { margin: 0; padding-top: 18px; border-top: 1px solid var(--line); font-size: 14px; color: var(--text-dim); }
.calc-total strong { float: right; font-family: var(--font-display); font-weight: 500; font-size: 25px; letter-spacing: var(--tr-lat); color: #f5f5f5; }
/* '1부 기준' 같은 단서 조항 — 작지만 읽혀야 하는 정보라 본문 톤 유지 */
.calc-note { font-size: 14.5px !important; color: var(--text-dim) !important; }

/* ===== 예상 금액 계산기 =====
   기존 .calc-* (계산 예시 카드)와 충돌하지 않도록 .pcalc-* 로 분리 */
.pcalc { margin: clamp(56px, 7vw, 90px) 0 clamp(50px, 6vw, 80px); }
.pcalc h2 {
  font-family: var(--font-body); font-weight: 500;
  font-size: clamp(25px, 3.4vw, 40px); letter-spacing: var(--tr-ko); line-height: 1.2;
  color: var(--text); margin: 0 0 14px; padding: 0; border: 0;
}
.pcalc-lead { color: var(--text-dim); font-size: 15.5px; line-height: 1.8; margin-bottom: 34px; word-break: keep-all; }
.pcalc-wrap {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 0;
  border: 1px solid var(--line);
}
.pcalc-controls { padding: clamp(24px, 3vw, 38px); border-right: 1px solid var(--line); display: grid; gap: clamp(24px, 2.8vw, 34px); }
.pcalc-field { border: 0; padding: 0; margin: 0; min-width: 0; }
.pcalc-field legend {
  padding: 0; margin-bottom: 14px;
  font-family: var(--font-display); font-weight: 500; font-size: 11.5px;
  letter-spacing: .26em; text-transform: uppercase; color: var(--text-faint);
}
.pcalc-field.is-off { opacity: .32; pointer-events: none; }

.seg { display: grid; gap: 8px; }
.seg.cols2 { grid-template-columns: 1fr 1fr; }
.seg.cols5 { grid-template-columns: repeat(5, 1fr); }
.seg-btn {
  cursor: pointer; text-align: left; background: none;
  border: 1px solid var(--line-soft); color: var(--text-dim);
  padding: 13px 15px; border-radius: 2px;
  font-family: var(--font-body); font-weight: 500; font-size: 15.5px; letter-spacing: -.01em;
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
  transition: border-color .3s var(--ease), color .3s, background .3s;
}
.seg.cols5 .seg-btn { justify-content: center; padding: 13px 4px; font-family: var(--font-display); font-size: 16px; letter-spacing: -.02em; }
.seg-btn em {
  font-style: normal; font-family: var(--font-display); font-weight: 400;
  font-size: 13.5px; letter-spacing: -.01em; color: var(--text-faint); white-space: nowrap;
}
.seg-btn:hover { border-color: var(--line); color: var(--text-mid); }
.seg-btn.is-on {
  border-color: rgba(181,123,255,.7); background: rgba(181,123,255,.09); color: #f0f0f0;
}
.seg-btn.is-on em { color: var(--vio); }

.pcalc-result { padding: clamp(24px, 3vw, 38px); display: flex; flex-direction: column; }
.pcalc-breakdown { display: grid; gap: 13px; margin: 0 0 22px; padding: 0; }
.pcalc-breakdown li {
  display: flex; justify-content: space-between; gap: 14px;
  font-size: 15px; color: var(--text-mid); padding-left: 0;
}
.pcalc-breakdown li::before { content: none; }
.pcalc-breakdown li span:last-child { color: #f0f0f0; font-weight: 500; white-space: nowrap; }
.pcalc-breakdown li.is-muted { color: var(--text-faint); }
.pcalc-breakdown li.is-muted span:last-child { color: var(--text-faint); font-weight: 400; }
.pcalc-sum {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
  margin: 0; padding-top: 20px; border-top: 1px solid var(--line);
  font-size: 13.5px; letter-spacing: .16em; text-transform: uppercase;
  font-family: var(--font-display); color: var(--text-faint);
}
.pcalc-sum strong {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(29px, 3.6vw, 46px); letter-spacing: var(--tr-lat);
  color: #f5f5f5; white-space: nowrap;
}
.pcalc-hint {
  margin-top: 18px; padding: 13px 16px; font-size: 14.5px; line-height: 1.75;
  color: #ffc48f; background: rgba(255,157,77,.07); border-left: 2px solid var(--amb);
  border-radius: 0 3px 3px 0; word-break: keep-all;
}
.pcalc-hint:empty { display: none; }
.pcalc-result .btn-gold { margin-top: auto; padding-top: 26px; align-self: flex-start; }
@media (max-width: 900px) {
  .pcalc-wrap { grid-template-columns: 1fr; }
  .pcalc-controls { border-right: 0; border-bottom: 1px solid var(--line); }
  .seg.cols5 { grid-template-columns: repeat(5, 1fr); }
}
@media (max-width: 460px) {
  .seg-btn { flex-direction: column; align-items: flex-start; gap: 3px; }
  .seg.cols5 .seg-btn { align-items: center; }
}

/* ===== Reviews ===== */
.review-head { margin-bottom: clamp(44px, 5vw, 64px); }
.review-tabs { display: flex; gap: 28px; flex-wrap: wrap; margin-bottom: clamp(44px, 5vw, 66px); }
.review-tab {
  cursor: pointer; background: none; border: 0; padding: 0 0 9px;
  border-bottom: 1px solid transparent; color: var(--text-faint);
  font-family: var(--font-body); font-size: 14.5px; letter-spacing: -.01em;
  transition: color .35s, border-color .35s;
}
.review-tab:hover { color: var(--text-mid); }
.review-tab.is-active { color: var(--text); border-bottom-color: var(--text); }
.review-panels { position: relative; max-width: 22ch; max-width: 26ch; }
.review-panels { max-width: none; }
.review-panel { display: none; }
.review-panel.is-active { display: block; animation: fadeBlur .8s var(--ease); }
@keyframes fadeBlur { from { opacity: 0; filter: blur(8px); transform: translateY(14px); } }
.review-panel p {
  font-family: var(--font-body); font-weight: 500;
  font-size: clamp(22px, 3.2vw, 44px); line-height: 1.28; letter-spacing: var(--tr-ko);
  color: var(--text); word-break: keep-all; max-width: 22ch;
}
/* 큰 인용문 아래 붙는 구체적인 내용 — 인용문이 짧아야 힘이 있으므로 분리 */
.review-detail {
  display: block; margin-top: 26px; max-width: 58ch;
  font-size: 16.5px; line-height: 1.85; color: var(--text-dim); word-break: keep-all;
}
.review-panel footer {
  margin-top: 26px; color: var(--text-faint); font-size: 13px;
  letter-spacing: .16em; font-family: var(--font-display);
}
.review-note { margin-top: clamp(44px, 5vw, 70px); font-size: 14.5px; line-height: 1.75; color: var(--text-faint); }

/* ===== Location ===== */
.location-head { margin-bottom: clamp(50px, 6vw, 80px); }
.location-grid { display: grid; grid-template-columns: 1.45fr 1fr; gap: clamp(28px, 4vw, 70px); align-items: start; }
.location-map { overflow: hidden; border-radius: 2px; border: 1px solid var(--line-soft); aspect-ratio: 16 / 10; filter: grayscale(1) invert(.92) contrast(.86); }
.location-map iframe { width: 100%; height: 100%; border: 0; }
.location-naver-top { display: none; }
.location-info dl { display: grid; gap: 30px; }
.location-info dt {
  font-family: var(--font-display); font-size: 11px; font-weight: 400;
  letter-spacing: .28em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 9px;
}
.location-info dd { font-size: 16px; color: var(--text-mid); line-height: 1.75; }
.location-info dd a { color: var(--text); border-bottom: 1px solid var(--line); padding-bottom: 1px; transition: border-color .3s; }
.location-info dd a:hover { border-color: var(--text); }
.location-info .btn-ghost { margin-top: 40px; }
.location-shots { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(10px, 1.2vw, 16px); margin-top: clamp(10px, 1.2vw, 16px); }
.location-shots figure { position: relative; margin: 0; overflow: hidden; border-radius: 2px; }
.location-shots img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; opacity: .82; transition: transform .9s var(--ease), opacity .5s; }
.location-shots figure:hover img { transform: scale(1.04); opacity: 1; }
.location-shots figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 30px 14px 12px;
  font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  font-family: var(--font-display); color: var(--text);
  background: linear-gradient(180deg, transparent, rgba(4,5,8,.9));
}

/* ===== Final CTA ===== */
.cta-final {
  position: relative; padding: clamp(130px, 17vw, 240px) var(--pad-x); overflow: hidden;
  border-top: 1px solid var(--line-soft);
  background: radial-gradient(50% 80% at 50% 100%, rgba(181,123,255,.09), transparent 72%);
}
.cta-eyebrow {
  font-family: var(--font-display); font-size: 12px; font-weight: 400;
  letter-spacing: .3em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 34px;
}
.cta-huge {
  position: relative; z-index: 2; display: block;
  font-family: var(--font-display); font-weight: 400; text-transform: uppercase;
  line-height: .88; letter-spacing: var(--tr-lat);
  font-size: clamp(72px, 17vw, 260px); color: var(--text);
}
.cta-huge .line { display: block; transition: opacity .5s var(--ease); }
.cta-huge .accent { color: var(--text-faint); transition: color .5s var(--ease); }
.cta-huge:hover .accent { color: var(--text); }
.cta-huge i { font-style: normal; color: var(--vio); }
.cta-tel { margin-top: clamp(44px, 5vw, 70px); }
.cta-tel a {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(23px, 3vw, 38px); letter-spacing: -.03em;
  color: var(--text); border-bottom: 1px solid var(--line); padding-bottom: 8px;
  transition: border-color .4s;
}
.cta-tel a:hover { border-color: var(--text); }
.cta-channels { display: flex; gap: clamp(22px, 3.4vw, 52px); margin-top: 44px; flex-wrap: wrap; }
.cta-sub { margin-top: 34px; color: var(--text-dim); font-size: 14.5px; max-width: 46ch; word-break: keep-all; }

/* ===== Footer ===== */
.site-footer { border-top: 1px solid var(--line-soft); }
.footer-top {
  max-width: 1560px; margin: 0 auto;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px;
  padding: clamp(60px, 7vw, 100px) var(--pad-x);
}
.footer-brand { display: flex; gap: 20px; align-items: flex-start; }
.footer-brand p { font-family: var(--font-display); font-weight: 400; font-size: 15px; letter-spacing: -.01em; line-height: 1.7; color: var(--text-mid); }
.footer-domains { display: flex; flex-direction: column; gap: 7px; margin-top: 20px; }
.footer-domains a { width: fit-content; font-size: 14px; color: var(--text-dim); border-bottom: 1px solid var(--line-soft); padding-bottom: 2px; transition: color .3s, border-color .3s; }
.footer-domains a:hover { color: var(--text); border-color: var(--line); }
.footer-tel {
  display: block; font-family: var(--font-display); font-weight: 400;
  font-size: clamp(27px, 3vw, 40px); letter-spacing: -.035em; color: var(--text);
}
.footer-contact p { margin-top: 16px; color: var(--text-dim); font-size: 15px; line-height: 1.8; }
.footer-owner {
  margin-top: 10px !important;
  font-family: var(--font-display); font-weight: 500; font-size: 13px !important;
  letter-spacing: .18em; text-transform: none; color: var(--vio) !important;
}
.footer-sns { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-sns a { color: var(--text-mid); border-bottom: 1px solid var(--line-soft); padding-bottom: 2px; transition: color .3s, border-color .3s; }
.footer-sns a:hover { color: var(--text); border-color: var(--line); }
.footer-notice {
  max-width: 1560px; margin: 0 auto; padding: 22px var(--pad-x);
  border-top: 1px solid var(--line-soft);
  color: var(--text-dim); font-size: 15px; line-height: 1.75; letter-spacing: .01em;
}
.footer-bottom {
  max-width: 1560px; margin: 0 auto;
  display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  padding: 22px var(--pad-x) 40px;
  border-top: 1px solid var(--line-soft);
  color: var(--text-dim); font-size: 13.5px; line-height: 1.85;
}

/* ===== Breadcrumb ===== */
.crumb {
  max-width: 1000px; margin: 0 auto; padding: 130px var(--pad-x) 0;
  font-family: var(--font-display); font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-faint);
}
.crumb a { border-bottom: 1px solid transparent; transition: color .3s, border-color .3s; }
.crumb a:hover { color: var(--text); border-color: var(--line); }
.crumb span { margin: 0 10px; opacity: .5; }
.crumb strong { color: var(--text-mid); font-weight: 400; }
.crumb + article .article-hero { padding-top: 34px; }

/* ===== Article ===== */
.article-hero { padding: 150px var(--pad-x) 44px; max-width: 1000px; margin: 0 auto; }
.article-hero .section-label { margin-bottom: 24px; }
.article-hero h1 {
  font-family: var(--font-body); font-weight: 500;
  font-size: clamp(31px, 5vw, 62px); line-height: 1.1; letter-spacing: var(--tr-ko);
  color: var(--text); word-break: keep-all; max-width: 20ch;
}
.article-meta { margin-top: 26px; color: var(--text-faint); font-size: 13px; letter-spacing: .06em; }
.article-body { max-width: 1000px; margin: 0 auto; padding: 24px var(--pad-x) 110px; }
.article-body h2 {
  font-family: var(--font-body); font-weight: 500;
  font-size: clamp(22px, 2.6vw, 33px); letter-spacing: var(--tr-ko); line-height: 1.28;
  margin: 64px 0 22px; padding-top: 36px; border-top: 1px solid var(--line-soft);
  color: var(--text); word-break: keep-all;
}
.article-body p { color: var(--text-dim); margin-bottom: 18px; font-size: 16.5px; line-height: 1.95; word-break: keep-all; }
.article-body strong { color: var(--text); font-weight: 500; }
.article-body a { color: var(--text); border-bottom: 1px solid var(--line); padding-bottom: 1px; }
.article-body a:hover { border-color: var(--text); }
.article-body ul { margin: 0 0 20px; padding-left: 0; display: grid; gap: 11px; }
.article-body li { color: var(--text-dim); padding-left: 20px; position: relative; font-size: 16px; line-height: 1.85; word-break: keep-all; }
.article-body li::before { content: ""; position: absolute; left: 0; top: .78em; width: 8px; height: 1px; background: var(--text-faint); }
.article-body img { border-radius: 2px; margin: 14px 0 24px; opacity: .86; }
.article-cta {
  margin-top: clamp(60px, 7vw, 90px); padding: clamp(36px, 5vw, 60px) 0 0;
  border-top: 1px solid var(--line-soft);
}
.article-cta p {
  margin-bottom: 30px; color: var(--text);
  font-family: var(--font-body); font-weight: 500;
  font-size: clamp(20px, 2.4vw, 31px); letter-spacing: var(--tr-ko); line-height: 1.35;
  word-break: keep-all; max-width: 24ch;
}
.article-nav { max-width: 1000px; margin: 0 auto; padding: 0 var(--pad-x) 100px; display: flex; gap: 26px; flex-wrap: wrap; }
.article-nav a {
  font-family: var(--font-display); font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--text-faint); padding-bottom: 8px; border-bottom: 1px solid transparent;
  transition: color .35s, border-color .35s;
}
.article-nav a:hover { color: var(--text); border-color: var(--line); }

/* ===== Floating contact ===== */
.floating-cta {
  position: fixed; right: clamp(16px, 2.4vw, 34px); bottom: clamp(16px, 2.4vw, 34px);
  z-index: 1500; display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.float-btn {
  position: relative; display: flex; align-items: center; gap: 0;
  height: 50px; min-width: 50px; padding: 0 15px; border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(4,5,8,.7); backdrop-filter: blur(12px); color: var(--text);
  transition: transform .4s var(--ease), border-color .4s, gap .4s var(--ease), background .4s;
  overflow: hidden;
}
.float-btn:hover { transform: translateY(-3px); gap: 10px; border-color: var(--text); }
.float-btn svg { width: 20px; height: 20px; flex: none; }
.float-btn span {
  max-width: 0; overflow: hidden; white-space: nowrap;
  font-family: var(--font-body); font-weight: 500; font-size: 14px;
  transition: max-width .4s var(--ease);
}
.float-btn:hover span, .float-btn:focus-visible span { max-width: 120px; }
.float-tel { border-color: rgba(181,123,255,.5); }
.float-tel:hover { border-color: var(--vio); }
.float-ring {
  position: absolute; inset: 0; border-radius: 999px;
  border: 1px solid rgba(181,123,255,.7);
  animation: floatRing 2.4s var(--ease) infinite; pointer-events: none;
}
@keyframes floatRing { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.4); opacity: 0; } }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center; gap: 20px;
  background: rgba(3, 3, 5, .96); backdrop-filter: blur(14px);
  opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s; padding: 28px;
}
.lightbox.is-open { opacity: 1; visibility: visible; }
.lightbox figure { margin: 0; max-width: min(1180px, 88vw); text-align: center; }
.lightbox img { max-width: 100%; max-height: 80vh; margin: 0 auto; border-radius: 2px; }
.lightbox figcaption { margin-top: 20px; color: var(--text-faint); font-size: 13px; letter-spacing: .14em; text-transform: uppercase; font-family: var(--font-display); }
.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  cursor: pointer; background: none; border: 0; color: var(--text-dim); font-size: 35px; line-height: 1;
  transition: color .3s, transform .4s var(--ease);
}
.lightbox-close:hover { color: var(--text); transform: rotate(90deg); }
.lightbox-nav {
  cursor: pointer; flex: none; width: 50px; height: 50px; border-radius: 50%;
  background: none; border: 1px solid var(--line); color: var(--text-dim); font-size: 18px;
  transition: border-color .3s, color .3s;
}
.lightbox-nav:hover { border-color: var(--text); color: var(--text); }

/* ===== Reveal — 블러 인 ===== */
.reveal, .reveal-lines span {
  opacity: 0; transform: translateY(26px); filter: blur(9px);
  transition: opacity 1.1s var(--ease), transform 1.1s var(--ease), filter 1.1s var(--ease);
}
.reveal.is-in, .reveal-lines.is-in span { opacity: 1; transform: translateY(0); filter: blur(0); }
.reveal-lines span:nth-child(2) { transition-delay: .14s; }
.reveal-lines span:nth-child(3) { transition-delay: .28s; }

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .hub-grid { grid-template-columns: repeat(2, 1fr); }
  .hub-card:nth-child(3) { border-left: 1px solid var(--line-soft); }
}
@media (max-width: 1024px) {
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .manager-grid, .column-grid { grid-template-columns: 1fr; }
  .manager-card, .column-card { border-left: 1px solid var(--line-soft); }
  .location-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .arrival-grid { grid-template-rows: repeat(2, minmax(160px, 34vw)); }
  .location-naver-top { display: inline-flex; margin-bottom: 20px; }
  .location-info .btn-ghost { display: none; }
  .calc-grid { grid-template-columns: 1fr; }
  .calc-card { border-left: 1px solid var(--line-soft); }
}
@media (max-width: 900px) {
  .gnb, .header-cta { display: none; }
  .menu-toggle { display: block; }
  .about-cols { grid-template-columns: 1fr; }
  .hero-foot span:first-child { display: none; }
  .hero-title { max-width: 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; }
  .hub-grid { grid-template-columns: 1fr; }
  .hub-card { border-left: 1px solid var(--line-soft); }
  .step { grid-template-columns: 60px 1fr; }
  .site-footer { padding-bottom: 24px; }
  .footer-bottom { padding-right: 84px; }
  .float-btn { height: 46px; min-width: 46px; padding: 0 13px; }
  .float-btn span { display: none; }
}
@media (max-width: 520px) {
  .facts-grid { grid-template-columns: 1fr; }
  .bigword { flex-direction: column; align-items: flex-start; gap: 6px; }
  .bigword-ko { white-space: normal; }
  /* 3열 가격표에서만 가운데 '구성' 열을 숨긴다.
     colspan 셀(2열 정보표)이나 마지막 셀은 값이 사라지므로 제외. */
  .price-table thead th:nth-child(2):not(:last-child),
  .price-table tbody td:nth-child(2):not([colspan]):not(:last-child) { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal, .reveal-lines span, .hero-title .word { opacity: 1; transform: none; filter: none; }
}
