/* ==========================================================================
   CODE ONE — 강남 일프로 코드원
   차콜·블랙 배경 / 오프화이트 글자 / 실버와 은은한 빛
   첫 화면: 생성 영상 배경 + HTML 타이포 / 전체 화면 메뉴
   ========================================================================== */

:root {
  --bg: #0E0F12;
  --bg-2: #14161B;
  --bg-3: #1B1E25;
  --line: rgba(230, 233, 238, 0.12);
  --line-strong: rgba(230, 233, 238, 0.28);
  --text: #F2F3F5;
  --text-2: #B9BEC8;
  --text-3: #8E939D;
  --silver: #C9CED6;
  --glow: #8FB0FF;
  --glow-soft: rgba(143, 176, 255, 0.16);

  --font-ko: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", "Noto Sans KR", system-ui, sans-serif;
  --font-en: "Unbounded", "Pretendard Variable", system-ui, sans-serif;

  --container: 1360px;
  --gutter: clamp(20px, 5vw, 64px);
  --header-h: 72px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.7s;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-ko);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  letter-spacing: -0.01em;
  word-break: keep-all;
  overflow-wrap: break-word;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg, video, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, p, dl, dd, figure { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--text); outline-offset: 4px; border-radius: 2px; }
[hidden] { display: none !important; }

html.is-static { scroll-behavior: auto; }
html.is-static .hero { min-height: 880px; }
@media (max-width: 600px) { html.is-static .hero { min-height: 760px; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  padding: 10px 16px; background: var(--text); color: var(--bg);
  border-radius: 4px; font-weight: 500;
}
.skip-link:focus { top: 16px; }

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- 타이포 ---------- */
.eyebrow {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-3);
  line-height: 1.4;
}
.section__title {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-top: 14px;
}
.section__lead {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--text-2);
  max-width: 34em;
  margin-top: 18px;
}
.wordmark {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.24em;
  color: var(--text);
  white-space: nowrap;
}
.wordmark--lg { font-size: 18px; }

/* ---------- 버튼 ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 28px;
  border-radius: 999px;
  font-size: 15px; font-weight: 500; letter-spacing: 0;
  border: 1px solid var(--line-strong);
  color: var(--text);
  transition: background-color 0.35s var(--ease-out), color 0.35s var(--ease-out), border-color 0.35s var(--ease-out), transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  will-change: transform;
}
.btn--primary { background: var(--text); color: var(--bg); border-color: var(--text); }
.btn--primary:hover { background: #fff; box-shadow: 0 0 0 6px rgba(242, 243, 245, 0.08), 0 8px 30px rgba(143, 176, 255, 0.18); transform: translateY(-1px); }
.btn--ghost { -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); background: rgba(14, 15, 18, 0.18); }
.btn--ghost:hover { border-color: var(--text); background: rgba(242, 243, 245, 0.1); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* ---------- 진입 화면 ---------- */
.intro {
  --reveal: 0%;
  position: fixed; inset: 0; z-index: 90;
  background: #F2F3F5; color: #0E0F12;
  display: grid; place-items: center;
  -webkit-mask-image: radial-gradient(circle at 50% 50%, transparent var(--reveal), #000 calc(var(--reveal) + 14%));
  mask-image: radial-gradient(circle at 50% 50%, transparent var(--reveal), #000 calc(var(--reveal) + 14%));
}
.intro.is-done { display: none; }
.intro__inner { text-align: center; padding: 24px; }
.intro__label { font-family: var(--font-en); font-size: 13px; letter-spacing: 0.24em; color: #6E7480; }
.intro__mark { font-family: var(--font-en); font-weight: 500; font-size: clamp(34px, 6vw, 72px); letter-spacing: -0.02em; line-height: 1; margin-top: 18px; }
.intro__count { font-family: var(--font-en); font-size: 14px; letter-spacing: 0.18em; margin-top: 26px; color: #0E0F12; font-variant-numeric: tabular-nums; }
.intro__hint { margin-top: 10px; font-size: 14px; color: #6E7480; }
body.intro-active { overflow: hidden; }
html.is-static .intro { display: none; }

/* 전환용 검은 막 */
.veil { position: fixed; inset: 0; z-index: 75; background: #05050a; opacity: 0; pointer-events: none; }

/* ---------- 헤더 ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 80;
  height: var(--header-h);
  transition: background-color 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(14, 15, 18, 0.72);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
body.menu-open .site-header { background: transparent; border-bottom-color: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; }
.site-header__inner {
  height: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto; padding-inline: var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.site-header__right { display: flex; align-items: center; gap: 22px; }
.site-header__phone {
  min-height: 40px; padding: 0 18px; border-radius: 999px;
  border: 1px solid var(--line-strong); font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; transition: border-color 0.3s, background-color 0.3s;
}
.site-header__phone:hover { border-color: var(--text); background: rgba(242, 243, 245, 0.06); }
.menu-toggle {
  display: inline-flex; flex-direction: column; align-items: flex-end; gap: 6px;
  min-height: 44px; justify-content: center; padding: 0 2px;
  font-family: var(--font-en); font-size: 13px; letter-spacing: 0.2em; color: var(--text);
}
.menu-toggle__label { min-width: 4.4em; text-align: right; }
.menu-toggle__line { position: relative; width: 100%; height: 1px; background: rgba(242, 243, 245, 0.35); display: block; }
.menu-toggle__line::after {
  content: ""; position: absolute; right: 0; top: 0; height: 100%; width: 40%; background: var(--text);
  transition: width 0.5s var(--ease-out);
}
.menu-toggle:hover .menu-toggle__line::after, .menu-toggle[aria-expanded="true"] .menu-toggle__line::after { width: 100%; }

/* ---------- 전체 화면 메뉴 ---------- */
.menu {
  position: fixed; inset: 0; z-index: 70;
  visibility: hidden; opacity: 0; pointer-events: none;
  background: #05050a;
  overflow: hidden;
}
.menu.is-open { visibility: visible; opacity: 1; pointer-events: auto; }
.menu__bg { position: absolute; inset: 0; will-change: transform; transform-origin: 50% 50%; }
.menu__bg-img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.menu__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 10, 0.72) 0%, rgba(5, 5, 10, 0.35) 45%, rgba(5, 5, 10, 0.15) 100%),
    linear-gradient(180deg, rgba(5, 5, 10, 0.35), transparent 30%, transparent 70%, rgba(5, 5, 10, 0.55));
}
.menu__inner {
  position: relative; height: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2); margin-inline: auto;
  padding: calc(var(--header-h) + 24px) var(--gutter) 40px;
  display: grid; grid-template-columns: 1fr; grid-template-rows: 1fr auto auto; gap: 32px;
  align-content: end;
}
.menu__list { align-self: center; }
.menu__list li { opacity: 0; }
.menu__link {
  display: flex; align-items: baseline; gap: 18px;
  font-size: clamp(38px, 7.2vw, 92px); font-weight: 500; line-height: 1.12; letter-spacing: -0.03em;
  color: var(--text); padding: 6px 0;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.45);
  transition: color 0.35s var(--ease-out), transform 0.5s var(--ease-out);
}
.menu__num { font-family: var(--font-en); font-size: 13px; letter-spacing: 0.18em; color: var(--text-2); min-width: 2.4em; }
.menu__list:hover .menu__link { color: rgba(242, 243, 245, 0.42); }
.menu__list .menu__link:hover, .menu__list .menu__link:focus-visible { color: var(--text); transform: translateX(10px); }
.menu__aside { max-width: 380px; display: flex; flex-direction: column; gap: 16px; }
.menu__aside > * { opacity: 0; }
.menu__desc { font-size: 15px; color: var(--text-2); text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5); }
.menu__cta { align-self: flex-start; }
.menu__foot { font-family: var(--font-ko); font-size: 13px; color: var(--text-3); opacity: 0; }
body.menu-open { overflow: hidden; }
@media (max-width: 899px) {
  .menu__bg::after {
    background:
      linear-gradient(180deg, rgba(5, 5, 10, 0.55) 0%, rgba(5, 5, 10, 0.45) 40%, rgba(5, 5, 10, 0.8) 75%, rgba(5, 5, 10, 0.92) 100%),
      linear-gradient(90deg, rgba(5, 5, 10, 0.55) 0%, rgba(5, 5, 10, 0.15) 60%, rgba(5, 5, 10, 0) 100%);
  }
}
@media (min-width: 900px) {
  .menu__inner {
    grid-template-columns: 1.4fr 1fr; grid-template-rows: 1fr auto; align-items: end;
    padding-bottom: 56px; column-gap: 64px;
  }
  .menu__list { grid-row: 1; grid-column: 1; }
  .menu__aside { grid-row: 1; grid-column: 2; align-self: center; justify-self: end; max-width: 360px; }
  .menu__foot { grid-row: 2; grid-column: 1 / -1; }
}

/* ---------- 첫 화면 ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: stretch;
  overflow: hidden;
  isolation: isolate;
  background: #07070a;
}
.hero__media { position: absolute; inset: -4% -3%; z-index: -2; will-change: transform; transform-origin: 55% 50%; }
.hero__poster, .hero__video { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__poster img, .hero__video { width: 100%; height: 100%; object-fit: cover; object-position: 56% 50%; }
.hero__video { opacity: 0; transition: opacity 1.2s ease; }
body.video-playing .hero__video { opacity: 1; }
html.is-static .hero__video { display: none; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(7, 7, 10, 0.78) 0%, rgba(7, 7, 10, 0.45) 32%, rgba(7, 7, 10, 0.05) 60%, rgba(7, 7, 10, 0) 100%),
    linear-gradient(180deg, rgba(7, 7, 10, 0.55) 0%, rgba(7, 7, 10, 0) 26%, rgba(7, 7, 10, 0) 62%, rgba(7, 7, 10, 0.75) 100%);
}
.hero__inner {
  position: relative;
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding: calc(var(--header-h) + 40px) var(--gutter) 64px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero__copy { max-width: 640px; will-change: transform; }
.hero__chip {
  display: inline-block; font-family: var(--font-en); font-size: 12px; letter-spacing: 0.2em;
  padding: 6px 10px 5px; border: 1px solid rgba(242, 243, 245, 0.5); color: var(--text);
  background: rgba(7, 7, 10, 0.35); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.hero__wordmark {
  font-family: var(--font-en);
  font-weight: 500;
  font-size: clamp(60px, 9.8vw, 152px);
  line-height: 0.92;
  letter-spacing: -0.035em;
  margin-top: 22px;
  display: flex; flex-direction: column;
  color: var(--text);
  text-shadow: 0 6px 60px rgba(0, 0, 0, 0.55);
}
.hero__word { display: block; }
.hero__word:nth-child(2) { padding-left: 0.08em; }
.hero__title {
  margin-top: 26px;
  font-size: clamp(20px, 1.9vw, 27px);
  font-weight: 500; letter-spacing: -0.01em; line-height: 1.4;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}
.hero__desc { margin-top: 10px; font-size: clamp(16px, 1.25vw, 18px); color: var(--text-2); max-width: 30em; text-shadow: 0 2px 16px rgba(0, 0, 0, 0.7); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__note {
  position: absolute; right: var(--gutter); bottom: 64px;
  font-size: 14px; color: var(--text-2); text-align: right; line-height: 1.6;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.7);
  display: none;
}
.hero__scroll {
  position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%);
  display: inline-flex; flex-direction: column; align-items: center; gap: 10px;
  font-family: var(--font-en); font-size: 12px; letter-spacing: 0.24em; color: var(--text-2);
}
.hero__scroll i { width: 1px; height: 44px; background: rgba(242, 243, 245, 0.25); position: relative; overflow: hidden; }
.hero__scroll i::after {
  content: ""; position: absolute; left: 0; top: -100%; width: 100%; height: 100%;
  background: var(--text); animation: scroll-hint 2.2s var(--ease-out) infinite;
}
@keyframes scroll-hint { 0% { top: -100%; } 60% { top: 100%; } 100% { top: 100%; } }
.br-desktop { display: none; }

@media (min-width: 900px) {
  .br-desktop { display: inline; }
  .hero__inner { justify-content: center; padding-bottom: 96px; }
  .hero__note { display: block; }
}
@media (max-width: 699px) {
  .hero__media { transform-origin: 50% 40%; }
  .hero__poster img { object-position: 50% 45%; }
  .hero__video { object-position: 66% 50%; }
  .hero__scrim {
    background:
      linear-gradient(180deg, rgba(7, 7, 10, 0.5) 0%, rgba(7, 7, 10, 0) 24%, rgba(7, 7, 10, 0) 44%, rgba(7, 7, 10, 0.82) 78%, rgba(7, 7, 10, 0.95) 100%);
  }
  .hero__inner { padding-bottom: 116px; }
  .hero__wordmark { font-size: clamp(56px, 17vw, 80px); }
  .hero__scroll { bottom: 24px; }
}

/* ---------- 섹션 공통 ---------- */
.section { position: relative; padding-block: clamp(88px, 11vw, 160px); scroll-margin-top: var(--header-h); background: var(--bg); }
.section + .section::before {
  content: ""; position: absolute; left: var(--gutter); right: var(--gutter); top: 0; height: 1px;
  background: var(--line);
}
.section__head { max-width: 760px; }
.section__head--split { max-width: none; display: grid; grid-template-columns: 1fr; gap: 20px; }
.section__head--split .section__lead { margin-top: 0; }
@media (min-width: 900px) {
  .section__head--split { grid-template-columns: 1fr 1fr; align-items: end; gap: 48px; }
  .section__head--split .section__lead { justify-self: end; max-width: 26em; }
}

/* ---------- 미디어 ---------- */
.media { position: relative; display: block; width: 100%; overflow: hidden; border-radius: 6px; background: var(--bg-2); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media--16x10 { aspect-ratio: 16 / 10; }
.media--16x9 { aspect-ratio: 16 / 9; }
.media--4x3 { aspect-ratio: 4 / 3; }
.media--4x5 { aspect-ratio: 4 / 5; }
.media__caption { margin-top: 14px; display: flex; align-items: baseline; gap: 14px; font-size: 14px; color: var(--text-2); letter-spacing: 0; }
.media__index { font-family: var(--font-en); font-size: 13px; letter-spacing: 0.12em; color: var(--text-3); }

/* ---------- 소개 ---------- */
.about__grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
.about__marks { margin-top: 36px; border-top: 1px solid var(--line); }
.about__marks li { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 15px; color: var(--text-2); display: flex; align-items: center; gap: 14px; }
.about__marks li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--silver); opacity: 0.8; flex: none; }
.about__statement { font-size: clamp(22px, 2.6vw, 34px); font-weight: 400; line-height: 1.5; letter-spacing: -0.02em; }
.about__text { margin-top: 28px; color: var(--text-2); max-width: 36em; font-size: clamp(16px, 1.2vw, 17px); }
.about__figure { max-width: 520px; }
@media (min-width: 900px) {
  .about__grid { grid-template-columns: 5fr 7fr; grid-template-areas: "head body" "figure body"; column-gap: clamp(48px, 7vw, 120px); row-gap: 72px; align-items: start; }
  .about__head { grid-area: head; }
  .about__body { grid-area: body; padding-top: 44px; }
  .about__figure { grid-area: figure; max-width: 420px; }
}
@media (min-width: 1200px) { .about__body { padding-top: 56px; } }

/* ---------- 공간 갤러리 ---------- */
.gallery { margin-top: clamp(40px, 5vw, 72px); display: grid; grid-template-columns: 1fr; gap: 40px; }
.gallery__btn { cursor: zoom-in; }
.gallery__btn img { transition: transform 1s var(--ease-out), filter 0.6s var(--ease-out); filter: brightness(0.94); }
.gallery__btn::after { content: ""; position: absolute; inset: 0; pointer-events: none; box-shadow: inset 0 0 0 1px rgba(242, 243, 245, 0.08); transition: box-shadow 0.5s var(--ease-out); }
.gallery__btn:hover img, .gallery__btn:focus-visible img { transform: scale(1.035); filter: brightness(1.04); }
.gallery__btn:hover::after { box-shadow: inset 0 0 0 1px rgba(242, 243, 245, 0.22); }
.gallery__btn:focus-visible { outline-offset: 6px; }
@media (min-width: 720px) {
  .gallery { grid-template-columns: repeat(12, 1fr); column-gap: clamp(20px, 2.5vw, 40px); row-gap: clamp(48px, 5vw, 80px); align-items: start; }
  .gallery__item--1 { grid-column: 1 / 8; }
  .gallery__item--2 { grid-column: 8 / 13; margin-top: clamp(48px, 8vw, 140px); }
  .gallery__item--3 { grid-column: 2 / 7; margin-top: clamp(-40px, -3vw, -20px); }
  .gallery__item--4 { grid-column: 7 / 13; margin-top: clamp(40px, 6vw, 96px); }
}

/* ---------- 이용 안내 ---------- */
.guide__list { margin-top: clamp(40px, 5vw, 72px); display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--line); }
.guide__item { padding: 32px 0; border-bottom: 1px solid var(--line); }
.guide__num { font-family: var(--font-en); font-size: 13px; letter-spacing: 0.18em; color: var(--text-3); display: block; }
.guide__title { font-size: 20px; font-weight: 500; margin-top: 18px; letter-spacing: -0.01em; }
.guide__text { margin-top: 10px; color: var(--text-2); max-width: 30em; }
@media (min-width: 900px) {
  .guide__list { grid-template-columns: repeat(3, 1fr); column-gap: 40px; }
  .guide__item { padding: 40px 0 44px; }
  .guide__num { font-size: 14px; }
  .guide__title { margin-top: 56px; font-size: 22px; }
}
.info-list { margin-top: 40px; border-top: 1px solid var(--line); }
.info-list__row, .site-footer__biz > div { display: grid; grid-template-columns: 120px 1fr; gap: 16px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.info-list dt, .site-footer__biz dt { color: var(--text-3); font-size: 14px; }
.info-list dd, .site-footer__biz dd { color: var(--text); font-size: 16px; }

/* ---------- 위치 ---------- */
.location__grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
.location__head .btn { margin-top: 28px; }
.location__visual { position: relative; }
.location__map { aspect-ratio: 4 / 3; border-radius: 6px; overflow: hidden; background: var(--bg-2); }
.location__map iframe { width: 100%; height: 100%; border: 0; }
.location__mark { position: relative; }
.location__mark .media img { transition: transform 1.2s var(--ease-out); }
.location__mark:hover .media img { transform: scale(1.03); }
.location__mark .media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(242, 243, 245, 0.08);
  background: linear-gradient(180deg, transparent 60%, rgba(7, 7, 10, 0.55));
}
.location__label {
  position: absolute; left: 24px; bottom: 58px; z-index: 1;
  font-family: var(--font-en); font-size: 13px; letter-spacing: 0.24em; color: var(--text-2);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
}
@media (min-width: 900px) { .location__grid { grid-template-columns: 5fr 7fr; column-gap: clamp(48px, 7vw, 120px); align-items: center; } }

/* ---------- 문의 ---------- */
.contact { overflow: hidden; }
.contact__bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; display: flex; align-items: flex-end; justify-content: center; }
.contact__bg span {
  font-family: var(--font-en); font-weight: 500;
  font-size: clamp(48px, 13.5vw, 340px);
  line-height: 0.8; letter-spacing: -0.03em; white-space: nowrap;
  color: transparent; -webkit-text-stroke: 1px rgba(242, 243, 245, 0.12);
  transform: translateY(24%);
}
@media (min-width: 900px) { .contact__bg span { font-size: clamp(160px, 22vw, 340px); } }
.contact__inner { position: relative; text-align: center; display: flex; flex-direction: column; align-items: center; }
.contact__inner .section__lead { margin-inline: auto; }
.contact__label { margin-top: 32px; font-size: 14px; color: var(--text-3); letter-spacing: 0.02em; }
.contact__actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 28px; }
.contact__number { margin-top: 20px; font-family: var(--font-en); font-size: 15px; letter-spacing: 0.08em; color: var(--text-2); }

/* ---------- 푸터 ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 48px 0 40px; background: var(--bg); position: relative; }
.site-footer__top { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px 40px; }
.site-footer__nav { display: flex; flex-wrap: wrap; gap: 8px 24px; }
.site-footer__nav a { font-size: 14px; color: var(--text-2); transition: color 0.3s; }
.site-footer__nav a:hover { color: var(--text); }
.site-footer__biz { margin-top: 36px; border-top: 1px solid var(--line); }
.site-footer__biz > div { grid-template-columns: 130px 1fr; }
.site-footer__biz dd { font-size: 14px; color: var(--text-2); }
.site-footer__bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; font-size: 14px; color: var(--text-3); }
.site-footer__copy { font-family: var(--font-en); font-size: 12px; letter-spacing: 0.12em; }
body.has-mobile-bar .site-footer { padding-bottom: 112px; }

/* ---------- 모바일 하단 전화 바 (전화번호가 있을 때만) ---------- */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 45;
  display: flex; gap: 10px;
  padding: 12px var(--gutter) calc(12px + env(safe-area-inset-bottom));
  background: rgba(14, 15, 18, 0.88);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
}
.mobile-bar__btn { flex: 1; min-height: 50px; display: inline-flex; align-items: center; justify-content: center; border-radius: 999px; border: 1px solid var(--line-strong); font-weight: 500; font-size: 15px; }
.mobile-bar__btn--primary { background: var(--text); color: var(--bg); border-color: var(--text); }
@media (min-width: 900px) {
  .mobile-bar { display: none !important; }
  body.has-mobile-bar .site-footer { padding-bottom: 40px; }
}

/* ---------- 라이트박스 ---------- */
.lightbox { border: 0; padding: 0; margin: auto; width: min(96vw, 1400px); max-width: none; max-height: none; background: transparent; color: var(--text); }
.lightbox::backdrop { background: rgba(8, 9, 11, 0.92); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.lightbox__figure { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.lightbox__img { max-height: 82vh; width: auto; max-width: 100%; border-radius: 6px; }
.lightbox__caption { font-size: 14px; color: var(--text-2); }
.lightbox__close {
  position: fixed; right: 20px; top: 16px; width: 48px; height: 48px;
  border-radius: 50%; border: 1px solid var(--line-strong);
  background: rgba(14, 15, 18, 0.7); font-size: 28px; line-height: 1;
  display: grid; place-items: center; transition: background-color 0.3s, border-color 0.3s;
}
.lightbox__close:hover { background: var(--text); color: var(--bg); border-color: var(--text); }
body.lightbox-open { overflow: hidden; }

/* ---------- 등장 효과 ---------- */
.js-reveal .reveal { opacity: 0; transform: translateY(14px); transition: opacity var(--dur) var(--ease-out), transform var(--dur) var(--ease-out); will-change: opacity, transform; }
.js-reveal .reveal.is-visible { opacity: 1; transform: none; }
.js-reveal .hero .reveal { transform: translateY(22px); transition-duration: 1s; }
@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scroll i::after { animation: none; }
}
