@charset "UTF-8";
/*
  ATELIER 계열 헤어살롱 레이아웃.

  타이포는 셋으로 나눈다.
    영문 제목 = Cormorant Garamond (세리프)
    영문 라벨과 메뉴 = Jost (지오메트릭 산세리프, 넓은 자간)
    한글 본문 = Pretendard
  한글에 세리프를 물리면 자족이 없어 다른 글꼴로 떨어지므로 영문에만 쓴다.

  밝기는 레이아웃이 정하고 스킨은 따라온다. 스킨이 쓸 색은 전부 변수로 내린다.
  폰트는 테마에 내장했다. 외부에서 받아오지 않는다.
*/

@font-face {
	font-family: 'PretendardHS';
	src: url('../../../../../common/fonts/PretendardVariable.woff2') format('woff2-variations');
	font-weight: 45 920;
	font-display: swap;
}

.hs {
	--hs-ink: #12100e;
	--hs-ink-2: #3a332d;
	--hs-sub: #8a8078;
	--hs-line: #e2dbd1;
	--hs-line-soft: #efe9e1;
	--hs-bg: #f6f2ec;
	--hs-panel: #fffdfa;
	--hs-dark: #14120f;

	--hs-serif: 'Cormorant Garamond', 'Times New Roman', serif;
	--hs-en: 'Jost', 'PretendardHS', -apple-system, BlinkMacSystemFont, sans-serif;
	--hs-kr: 'PretendardHS', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Malgun Gothic', sans-serif;

	/* 레이아웃 밖(스킨·위젯)이 물려받을 이름 */
	--point-color: var(--hs-point, #b08d57);
	--point-ink: var(--hs-ink);
	--point-sub: var(--hs-sub);
	--point-line: var(--hs-line);
	--point-bg: var(--hs-panel);
	--point-soft: var(--hs-bg);

	font-family: var(--hs-kr);
	color: var(--hs-ink);
	background: var(--hs-bg);
	word-break: keep-all;
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}

/*
  코어 기본 스타일이 body 에 여백을 두어 화면 가장자리에 흰 테두리가 남는다.
  풀블리드 화면이라 그 여백을 걷어내고 바탕색도 테마 색으로 맞춘다.
*/
html, body { margin: 0; padding: 0; background: #f6f2ec; }

/* 스크롤바도 브랜드 톤으로 둔다 */
html { scrollbar-width: thin; scrollbar-color: #c7bcac #efe9e1; }
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: #efe9e1; }
::-webkit-scrollbar-thumb { background: #c7bcac; border: 3px solid #efe9e1; border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--hs-point, #b08d57); }
::-webkit-scrollbar-corner { background: #efe9e1; }

/* 어두운 칸 안에서 가로로 흐르는 목록의 스크롤바 */
.hs-rail { scrollbar-width: none; }

.hs *, .hs *::before, .hs *::after { box-sizing: border-box; }
.hs img { max-width: 100%; }
/*
  :where 로 감싸 특이도를 0 으로 둔다.
  그냥 .hs a 로 두면 (클래스1+요소1) 이라 .hs-btn 같은 (클래스1) 규칙을 이겨
  버튼이 검정 바탕에 검정 글씨가 된다.
*/
.hs :where(a) { color: inherit; text-decoration: none; }
.hs :where(ul, ol) { list-style: none; margin: 0; padding: 0; }

.hs-wrap { width: 100%; max-width: var(--hs-width, 1280px); margin: 0 auto; padding: 0 40px; }

/* 영문 라벨. 가는 선을 앞에 달아 편집물처럼 보이게 한다 */
.hs-label { display: inline-flex; align-items: center; gap: 12px; font-family: var(--hs-en); font-size: 11px; font-weight: 500; letter-spacing: .34em; text-transform: uppercase; color: var(--point-color); margin-bottom: 22px; }
.hs-label i { display: block; width: 34px; height: 1px; background: currentColor; opacity: .6; }
.hs-label.is-light { color: rgba(255, 255, 255, .82); }

.hs-link { display: inline-flex; align-items: center; gap: 10px; font-family: var(--hs-en); font-size: 12px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; padding-bottom: 6px; border-bottom: 1px solid currentColor; transition: gap .22s ease, color .22s ease; }
.hs-link svg { width: 17px; height: 17px; }
.hs-link:hover { gap: 16px; color: var(--point-color); }
.hs-link-sm { font-size: 11px; letter-spacing: .13em; }

.hs-btn { display: inline-flex; align-items: center; gap: 12px; padding: 19px 40px; background: var(--point-color); color: #fff; font-family: var(--hs-en); font-size: 12.5px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; transition: gap .22s ease, background .22s ease; }
.hs-btn svg { width: 18px; height: 18px; }
.hs-btn:hover { gap: 18px; background: var(--hs-ink); }

/* ── 헤더 : 화면 폭을 그대로 쓴다 ─────────── */
.hs-head { position: fixed; top: 0; left: 0; right: 0; z-index: 300; background: rgba(246, 242, 236, .94); backdrop-filter: saturate(1.4) blur(10px); border-bottom: 1px solid var(--hs-line); transition: background .35s ease, border-color .35s ease, color .35s ease; }
.hs-head-row { display: flex; align-items: center; gap: 40px; padding: 0 40px; height: 88px; }

.hs-head.is-over { background: transparent; backdrop-filter: none; border-bottom-color: rgba(255, 255, 255, .16); color: #fff; }

.hs-brand { display: flex; flex-direction: column; justify-content: center; gap: 4px; flex: 0 0 auto; }
.hs-brand-img { height: 30px; width: auto; display: block; }
.hs-brand-mark { font-family: var(--hs-en); font-size: 19px; font-weight: 500; letter-spacing: .3em; text-transform: uppercase; line-height: 1; }
.hs-brand-tag { font-family: var(--hs-serif); font-size: 12px; font-style: italic; letter-spacing: .04em; color: var(--hs-sub); line-height: 1; }
.hs-head.is-over .hs-brand-tag { color: rgba(255, 255, 255, .68); }

.hs-gnb { flex: 1; display: flex; justify-content: center; }
.hs-gnb-list { display: flex; gap: 6px; }
.hs-gnb-list > li { position: relative; }
.hs-gnb-list > li > a { display: block; padding: 33px 18px; font-family: var(--hs-en); font-size: 12.5px; font-weight: 400; letter-spacing: .2em; text-transform: uppercase; position: relative; }
.hs-gnb-list > li > a::after { content: ''; position: absolute; left: 18px; right: 18px; bottom: 28px; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.hs-gnb-list > li:hover > a::after, .hs-gnb-list > li.on > a::after { transform: scaleX(1); }

.hs-gnb-sub { position: absolute; top: 100%; left: 6px; min-width: 178px; padding: 14px 0; background: var(--hs-panel); border: 1px solid var(--hs-line); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .22s, transform .22s, visibility .22s; }
.hs-gnb-list > li:hover .hs-gnb-sub { opacity: 1; visibility: visible; transform: translateY(0); }
.hs-gnb-sub a { display: block; padding: 9px 20px; font-size: 13.5px; color: var(--hs-ink-2); }
.hs-gnb-sub a:hover { color: var(--point-color); background: var(--hs-bg); }

.hs-head-side { display: flex; align-items: center; gap: 22px; flex: 0 0 auto; }
.hs-head-tel { font-family: var(--hs-en); font-size: 13px; letter-spacing: .1em; color: var(--hs-ink-2); }
.hs-head.is-over .hs-head-tel { color: rgba(255, 255, 255, .82); }
.hs-head-tel:hover { color: var(--point-color); }

.hs-reserve { display: inline-flex; align-items: center; gap: 9px; padding: 13px 24px; border: 1px solid currentColor; font-family: var(--hs-en); font-size: 11.5px; font-weight: 500; letter-spacing: .19em; text-transform: uppercase; transition: gap .22s ease, background .22s ease, color .22s ease, border-color .22s ease; }
.hs-reserve svg { width: 16px; height: 16px; }
.hs-reserve:hover { gap: 14px; background: var(--hs-ink); border-color: var(--hs-ink); color: #fff; }
.hs-head.is-over .hs-reserve:hover { background: #fff; border-color: #fff; color: var(--hs-ink); }

.hs-burger { display: none; width: 34px; height: 34px; padding: 0; border: 0; background: none; cursor: pointer; flex-direction: column; justify-content: center; gap: 7px; color: inherit; }
.hs-burger span { display: block; height: 1px; width: 26px; background: currentColor; transition: transform .26s, opacity .26s; }
.hs-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.hs-burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

/* 전체화면 메뉴 */
.hs-drawer { position: fixed; inset: 0; z-index: 290; background: var(--hs-dark); color: #fff; padding: 128px 40px 60px; overflow-y: auto; }
.hs-drawer-inner { display: flex; flex-wrap: wrap; gap: 60px; align-items: flex-start; width: 100%; max-width: var(--hs-width, 1280px); margin: 0 auto; }
.hs-drawer-nav { flex: 1; min-width: 260px; }
.hs-drawer-nav > ol > li { border-bottom: 1px solid rgba(255, 255, 255, .12); opacity: 0; transform: translateY(16px); animation: hsUp .55s forwards; animation-delay: calc(var(--d) * 70ms + 120ms); }
.hs-drawer-nav > ol > li > a { display: flex; align-items: baseline; gap: 20px; padding: 22px 0; }
.hs-drawer-nav em { font-family: var(--hs-en); font-style: normal; font-size: 11px; letter-spacing: .2em; color: var(--point-color); }
.hs-drawer-nav > ol > li > a > span { font-family: var(--hs-serif); font-size: clamp(30px, 5vw, 52px); font-weight: 300; letter-spacing: .01em; }
.hs-drawer-nav ul { padding: 0 0 18px 46px; display: flex; flex-wrap: wrap; gap: 8px 22px; }
.hs-drawer-nav ul a { font-size: 14px; color: rgba(255, 255, 255, .62); }
.hs-drawer-nav ul a:hover { color: #fff; }
.hs-drawer-side { flex: 0 0 auto; display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.hs-drawer-tel { font-family: var(--hs-serif); font-size: 30px; letter-spacing: .02em; }
.hs-drawer-reserve { border-color: rgba(255, 255, 255, .5); }
.hs-drawer-sns { display: flex; gap: 18px; }
.hs-drawer-sns a { font-family: var(--hs-en); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255, 255, 255, .6); }
.hs-drawer-sns a:hover { color: var(--point-color); }

/* ── 슬라이더 : 풀블리드 ─────────────────── */
.hs-hero { position: relative; overflow: hidden; background: var(--hs-dark); }
.hs-hero-full { height: 100svh; }
.hs-hero-tall { height: 84svh; }
.hs-hero-half { height: 62svh; }

.hs-hero-stage { position: absolute; inset: 0; }
.hs-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 1.1s cubic-bezier(.4, 0, .2, 1); }
.hs-slide.is-active { opacity: 1; visibility: visible; }

.hs-slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.02); transition: transform 9s linear; }
.hs-slide.is-active .hs-slide-bg { transform: scale(1.12); }
.hs-slide-veil { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18, 16, 14, .5) 0%, rgba(18, 16, 14, .1) 34%, rgba(18, 16, 14, .2) 58%, rgba(18, 16, 14, .78) 100%); }

/* 문구는 콘텐츠 폭이 아니라 화면 가장자리를 기준으로 놓는다 */
/* 한글은 라틴보다 글자 폭이 넓다. 상자를 넉넉히 잡지 않으면 단어가 한 자씩 끊긴다 */
.hs-slide-copy { position: absolute; left: 0; bottom: 21%; width: min(58rem, 78vw); padding: 0 40px 0 clamp(40px, 8vw, 132px); color: #fff; }
.hs-slide-eyebrow { display: inline-flex; align-items: center; gap: 14px; font-family: var(--hs-en); font-size: 11px; font-weight: 500; letter-spacing: .36em; text-transform: uppercase; opacity: 0; transform: translateY(18px); }
.hs-slide-eyebrow i { display: block; width: 46px; height: 1px; background: currentColor; }
.hs-slide-headline { margin: 22px 0 0; font-family: var(--hs-serif); font-size: clamp(38px, 6.4vw, 92px); font-weight: 300; line-height: 1.08; letter-spacing: -0.01em; opacity: 0; transform: translateY(26px); }
.hs-slide-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 38px; padding-bottom: 8px; border-bottom: 1px solid rgba(255, 255, 255, .5); font-family: var(--hs-en); font-size: 12px; font-weight: 500; letter-spacing: .2em; text-transform: uppercase; opacity: 0; transform: translateY(26px); transition: gap .22s ease, border-color .22s ease; }
.hs-slide-link svg { width: 18px; height: 18px; }
.hs-slide-link:hover { gap: 18px; border-color: #fff; }

.hs-slide.is-active .hs-slide-eyebrow { animation: hsUp .9s .3s forwards; }
.hs-slide.is-active .hs-slide-headline { animation: hsUp .9s .44s forwards; }
.hs-slide.is-active .hs-slide-link { animation: hsUp .9s .62s forwards; }

@keyframes hsUp { to { opacity: 1; transform: translateY(0); } }

.hs-hero-nav { position: absolute; right: clamp(28px, 5vw, 72px); bottom: 21%; display: flex; align-items: center; gap: 18px; color: #fff; }
.hs-hero-count { display: flex; align-items: center; gap: 14px; font-family: var(--hs-en); font-size: 12px; letter-spacing: .16em; }
.hs-hero-count b { font-weight: 500; }
.hs-hero-count > span:last-child { opacity: .5; }
.hs-hero-bar { display: block; width: 74px; height: 1px; background: rgba(255, 255, 255, .3); }
.hs-hero-bar i { display: block; height: 100%; width: 0; background: #fff; }
.hs-arrow { width: 50px; height: 50px; padding: 0; border: 1px solid rgba(255, 255, 255, .32); border-radius: 50%; background: none; color: #fff; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; transition: background .22s, border-color .22s; }
.hs-arrow svg { width: 19px; height: 19px; }
.hs-arrow:hover { background: rgba(255, 255, 255, .14); border-color: rgba(255, 255, 255, .75); }

.hs-hero-dots { position: absolute; left: clamp(40px, 8vw, 132px); bottom: 46px; display: flex; gap: 10px; }
.hs-hero-dots button { width: 30px; height: 2px; padding: 0; border: 0; background: rgba(255, 255, 255, .3); cursor: pointer; transition: background .22s; }
.hs-hero-dots li.is-on button { background: #fff; }

.hs-hero-scroll { position: absolute; right: clamp(28px, 5vw, 72px); bottom: 46px; display: flex; align-items: center; gap: 12px; color: rgba(255, 255, 255, .7); font-family: var(--hs-en); font-size: 10px; letter-spacing: .3em; }
.hs-hero-scroll i { display: block; width: 46px; height: 1px; background: linear-gradient(90deg, rgba(255, 255, 255, .8), transparent); animation: hsSlideX 2.2s ease-in-out infinite; }
@keyframes hsSlideX { 0%, 100% { transform: scaleX(.3); transform-origin: left; opacity: .4; } 50% { transform: scaleX(1); transform-origin: left; opacity: 1; } }

/* ── 본문 칸 ─────────────────────────────── */
.hs-sec { padding: 130px 0; }
.hs-sec-head { margin-bottom: 62px; }
.hs-sec-title { margin: 0; font-family: var(--hs-serif); font-size: clamp(32px, 4.6vw, 58px); font-weight: 300; letter-spacing: -0.01em; line-height: 1.12; }
.hs-sec-note { margin: 16px 0 0; font-size: 15px; line-height: 1.85; color: var(--hs-sub); max-width: 52ch; }
.hs-sec-foot { margin-top: 56px; }

.hs-intro { text-align: center; padding: 150px 0 130px; background: var(--hs-panel); }
.hs-intro .hs-label { justify-content: center; }
.hs-intro-title { margin: 0; font-family: var(--hs-serif); font-size: clamp(27px, 3.9vw, 46px); font-weight: 300; line-height: 1.44; letter-spacing: 0; }
.hs-intro-text { margin: 30px auto 0; max-width: 62ch; font-size: 16px; line-height: 2.05; color: var(--hs-sub); }
.hs-intro-sign { display: inline-block; margin-top: 34px; font-family: var(--hs-serif); font-size: 19px; font-style: italic; color: var(--hs-ink-2); }

.hs-page { padding-top: 0; }

/* 시술표 */
.hs-menu { display: grid; grid-template-columns: repeat(auto-fit, minmax(420px, 1fr)); gap: 26px 70px; }
.hs-menu-cat { margin: 0 0 6px; font-family: var(--hs-en); font-size: 11.5px; font-weight: 500; letter-spacing: .28em; text-transform: uppercase; color: var(--point-color); display: flex; align-items: center; gap: 14px; }
.hs-menu-cat::after { content: ''; flex: 1; height: 1px; background: var(--hs-line); }
.hs-menu-row { display: flex; align-items: baseline; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--hs-line-soft); }
.hs-menu-name { flex: 0 1 auto; min-width: 0; }
.hs-menu-name b { font-size: 17px; font-weight: 600; letter-spacing: -0.01em; }
.hs-menu-name span { display: block; margin-top: 6px; font-size: 13.5px; line-height: 1.65; color: var(--hs-sub); }
.hs-menu-rule { flex: 1; min-width: 20px; height: 1px; border-bottom: 1px dotted var(--hs-line); align-self: center; }
.hs-menu-meta { display: flex; align-items: baseline; gap: 22px; flex: 0 0 auto; }
.hs-menu-time { font-family: var(--hs-en); font-size: 12px; letter-spacing: .08em; color: var(--hs-sub); }
.hs-menu-price { font-family: var(--hs-en); font-size: 17px; font-weight: 500; letter-spacing: .02em; min-width: 84px; text-align: right; }

/* 디자이너 : 가로로 흐른다 */
.hs-rail { overflow-x: auto; overflow-y: hidden; scrollbar-width: none; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; }
.hs-rail::-webkit-scrollbar { display: none; }
.hs-rail-track { display: flex; gap: 26px; padding: 0 max(40px, calc((100vw - var(--hs-width, 1280px)) / 2 + 40px)) 10px; }
.hs-card { flex: 0 0 288px; scroll-snap-align: start; }
.hs-card-photo { position: relative; aspect-ratio: 3 / 4; background: var(--hs-panel); overflow: hidden; margin-bottom: 20px; }
.hs-card-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .7s cubic-bezier(.2, .8, .3, 1); }
.hs-card:hover .hs-card-photo img { transform: scale(1.06); }
.hs-card-none { display: flex; width: 100%; height: 100%; align-items: center; justify-content: center; font-family: var(--hs-serif); font-size: 62px; font-weight: 300; color: var(--hs-line); }
.hs-card-no { position: absolute; left: 16px; top: 14px; font-family: var(--hs-en); font-size: 11px; letter-spacing: .18em; color: #fff; mix-blend-mode: difference; }
.hs-card-role { display: block; font-family: var(--hs-en); font-size: 10.5px; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; color: var(--point-color); margin-bottom: 9px; }
.hs-card-name { font-family: var(--hs-serif); font-size: 27px; font-weight: 400; letter-spacing: 0; }
.hs-card-branch { display: block; margin-top: 5px; font-size: 12.5px; color: var(--hs-sub); }
.hs-card-text { margin: 12px 0 16px; font-size: 13.5px; line-height: 1.75; color: var(--hs-sub); }

/* 룩북 : 화면 폭을 가득 쓰는 모자이크 */
.hs-gallery { background: var(--hs-panel); }
.hs-mosaic { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; padding: 0 4px; }
.hs-mosaic li:nth-child(6n + 1) { grid-column: span 2; grid-row: span 2; }
.hs-mosaic a { display: block; position: relative; overflow: hidden; height: 100%; }
.hs-mosaic img, .hs-mosaic-none { display: block; width: 100%; height: 100%; min-height: 240px; object-fit: cover; background: var(--hs-bg); transition: transform .8s cubic-bezier(.2, .8, .3, 1); }
.hs-mosaic a:hover img { transform: scale(1.05); }
.hs-mosaic-cap { position: absolute; left: 0; right: 0; bottom: 0; padding: 34px 20px 18px; background: linear-gradient(180deg, transparent, rgba(18, 16, 14, .72)); color: #fff; font-size: 13.5px; font-weight: 500; opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s; }
.hs-mosaic a:hover .hs-mosaic-cap { opacity: 1; transform: translateY(0); }

/* 매장 */
.hs-branch-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1px; background: var(--hs-line); border: 1px solid var(--hs-line); }
.hs-branch-item { padding: 42px 38px; background: var(--hs-bg); transition: background .3s ease; }
.hs-branch-item:hover { background: var(--hs-panel); }
.hs-branch-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.hs-branch-name { font-family: var(--hs-serif); font-size: 28px; font-weight: 400; }
.hs-branch-open { padding: 4px 11px; font-family: var(--hs-en); font-size: 10px; font-weight: 500; letter-spacing: .16em; text-transform: uppercase; border: 1px solid var(--hs-line); color: var(--hs-sub); }
.hs-branch-open.is-open { border-color: var(--point-color); color: var(--point-color); }
.hs-branch-summary { margin: 0 0 22px; font-size: 14px; line-height: 1.8; color: var(--hs-sub); }
.hs-branch-meta { display: grid; grid-template-columns: 84px 1fr; gap: 10px 16px; margin: 0 0 26px; font-size: 13.5px; }
.hs-branch-meta dt { font-family: var(--hs-en); font-size: 10px; font-weight: 500; letter-spacing: .18em; color: var(--hs-sub); padding-top: 3px; }
.hs-branch-meta dd { margin: 0; line-height: 1.65; }

/* 마무리 */
.hs-cta { position: relative; padding: 160px 0; background: var(--hs-dark); background-size: cover; background-position: center; color: #fff; text-align: center; }
.hs-cta-veil { position: absolute; inset: 0; background: rgba(18, 16, 14, .62); }
.hs-cta-inner { position: relative; }
.hs-cta .hs-label { justify-content: center; }
.hs-cta-title { margin: 0 0 44px; font-family: var(--hs-serif); font-size: clamp(30px, 4.4vw, 54px); font-weight: 300; line-height: 1.3; }

/* ── 서브 페이지 ─────────────────────────── */
.hs-body { padding: 168px 0 130px; min-height: 60vh; }

/* ── 푸터 ────────────────────────────────── */
.hs-foot { position: relative; padding: 92px 0 48px; background: var(--hs-dark); color: rgba(255, 255, 255, .72); }
.hs-foot-top { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; align-items: flex-start; padding-bottom: 46px; border-bottom: 1px solid rgba(255, 255, 255, .1); }
.hs-foot-mark { display: block; font-family: var(--hs-en); font-size: 18px; font-weight: 500; letter-spacing: .3em; text-transform: uppercase; color: #fff; }
.hs-foot-tag { display: block; margin-top: 8px; font-family: var(--hs-serif); font-size: 14px; font-style: italic; color: rgba(255, 255, 255, .5); }
.hs-foot-menu { display: flex; flex-wrap: wrap; gap: 26px; }
.hs-foot-menu a { font-family: var(--hs-en); font-size: 12px; letter-spacing: .16em; text-transform: uppercase; }
.hs-foot-menu a:hover { color: var(--point-color); }
.hs-foot-sns { display: flex; gap: 18px; }
.hs-foot-sns a { font-family: var(--hs-en); font-size: 11.5px; letter-spacing: .16em; text-transform: uppercase; color: rgba(255, 255, 255, .55); }
.hs-foot-sns a:hover { color: var(--point-color); }
.hs-foot-bottom { padding-top: 32px; }
.hs-foot-biz { margin: 0 0 14px; font-size: 12.5px; line-height: 1.95; color: rgba(255, 255, 255, .42); }
.hs-foot-copy { margin: 0; font-family: var(--hs-en); font-size: 11.5px; letter-spacing: .06em; color: rgba(255, 255, 255, .35); }

.hs-top { position: fixed; right: 32px; bottom: 32px; z-index: 200; width: 50px; height: 50px; padding: 0; border: 1px solid var(--hs-line); background: var(--hs-panel); color: var(--hs-ink); cursor: pointer; display: none; align-items: center; justify-content: center; transition: background .22s, color .22s; }
.hs-top svg { width: 19px; height: 19px; }
.hs-top.is-on { display: inline-flex; }
.hs-top:hover { background: var(--hs-ink); border-color: var(--hs-ink); color: #fff; }

/* 스크롤에 따라 떠오르는 요소 */
.hs-reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s cubic-bezier(.2, .8, .3, 1), transform .9s cubic-bezier(.2, .8, .3, 1); }
.hs-reveal.is-in { opacity: 1; transform: translateY(0); }

/* ── 좁은 화면 ───────────────────────────── */
@media (max-width: 1180px) {
	.hs-gnb { display: none; }
	.hs-burger { display: flex; }
	.hs-head-tel { display: none; }
	.hs-mosaic { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
	.hs-wrap { padding: 0 24px; }
	.hs-head-row { padding: 0 24px; height: 68px; }
	.hs-drawer { padding: 100px 24px 50px; }
	.hs-sec { padding: 86px 0; }
	.hs-sec-head { margin-bottom: 42px; }
	.hs-intro { padding: 96px 0 86px; }
	.hs-cta { padding: 106px 0; }
	.hs-body { padding: 116px 0 86px; }
	.hs-menu { grid-template-columns: 1fr; gap: 20px; }
	.hs-mosaic { grid-template-columns: repeat(2, 1fr); }
	.hs-mosaic li:nth-child(6n + 1) { grid-column: span 2; grid-row: span 1; }
	.hs-slide-copy { width: auto; right: 0; bottom: 25%; padding: 0 24px; }
	.hs-hero-nav { right: 24px; bottom: auto; top: 50%; transform: translateY(-50%); flex-direction: column; }
	.hs-hero-count { display: none; }
	.hs-hero-dots { left: 24px; bottom: 34px; }
	.hs-hero-scroll { display: none; }
	.hs-reserve { padding: 10px 16px; font-size: 10.5px; letter-spacing: .14em; }
	.hs-reserve svg { display: none; }
	.hs-branch-item { padding: 32px 26px; }
	.hs-card { flex-basis: 240px; }
	.hs-rail-track { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 560px) {
	.hs-brand-mark { font-size: 16px; letter-spacing: .24em; }
	.hs-brand-tag { display: none; }
	.hs-menu-row { flex-wrap: wrap; }
	.hs-menu-rule { display: none; }
	.hs-menu-meta { width: 100%; justify-content: space-between; }
	.hs-menu-price { text-align: left; }
	.hs-branch-meta { grid-template-columns: 1fr; gap: 3px; }
	.hs-branch-meta dd { margin-bottom: 10px; }
}

/* 움직임을 줄이도록 설정한 기기에서는 확대와 전환을 멈춘다 */
@media (prefers-reduced-motion: reduce) {
	.hs-slide-bg, .hs-slide.is-active .hs-slide-bg { transition: none; transform: none; }
	.hs-slide.is-active .hs-slide-eyebrow,
	.hs-slide.is-active .hs-slide-headline,
	.hs-slide.is-active .hs-slide-link,
	.hs-drawer-nav > ol > li { animation: none; opacity: 1; transform: none; }
	.hs-hero-scroll i { animation: none; }
	.hs-reveal { opacity: 1; transform: none; transition: none; }
}
