refactor(skills): Restructure skills to dual-platform architecture

Major refactoring of ourdigital-custom-skills with new numbering system:

## Structure Changes
- Each skill now has code/ (Claude Code) and desktop/ (Claude Desktop) versions
- New progressive numbering: 01-09 General, 10-19 SEO, 20-29 GTM, 30-39 OurDigital, 40-49 Jamie

## Skill Reorganization
- 01-notion-organizer (from 02)
- 10-18: SEO tools split into focused skills (technical, on-page, local, schema, vitals, gsc, gateway)
- 20-21: GTM audit and manager
- 30-32: OurDigital designer, research, presentation
- 40-41: Jamie brand editor and audit

## New Files
- .claude/commands/: Slash command definitions for all skills
- CLAUDE.md: Updated with new skill structure documentation
- REFACTORING_PLAN.md: Migration documentation
- COMPATIBILITY_REPORT.md, SKILLS_COMPARISON.md: Analysis docs

## Removed
- Old skill directories (02-05, 10-14, 20-21 old numbering)
- Consolidated into new structure with _archive/ for reference

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-22 01:58:24 +09:00
parent 214247ace2
commit eea49f9f8c
251 changed files with 12308 additions and 102 deletions

View File

@@ -0,0 +1,393 @@
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{TITLE}} | 제이미성형외과</title>
<style>
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
:root {
--jamie-green: #79A233;
--jamie-light-green: #AFCC6D;
--jamie-main: #6d7856;
--jamie-black: #000000;
--jamie-white: #FFFFFF;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Pretendard', sans-serif;
background: #1a1a1a;
}
/* Slide Base */
.slide {
width: 100vw;
height: 100vh;
padding: 60px 80px;
display: flex;
flex-direction: column;
page-break-after: always;
position: relative;
overflow: hidden;
}
/* Title Slide */
.slide-title {
background: var(--jamie-black);
color: var(--jamie-white);
justify-content: center;
align-items: center;
text-align: center;
}
.slide-title .logo {
width: 100px;
height: 100px;
border: 3px solid var(--jamie-green);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 48px;
font-weight: bold;
color: var(--jamie-green);
margin-bottom: 40px;
}
.slide-title h1 {
font-size: 56px;
font-weight: 700;
margin-bottom: 16px;
}
.slide-title .subtitle {
font-size: 24px;
color: var(--jamie-light-green);
margin-bottom: 60px;
}
.slide-title .meta {
font-size: 18px;
color: var(--jamie-main);
}
/* Content Slide */
.slide-content {
background: var(--jamie-white);
}
.slide-header {
margin-bottom: 40px;
}
.slide-header h2 {
font-size: 40px;
font-weight: 700;
color: var(--jamie-black);
display: flex;
align-items: center;
gap: 16px;
}
.slide-header h2::before {
content: '';
width: 8px;
height: 40px;
background: var(--jamie-green);
border-radius: 4px;
}
.slide-body {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
}
.slide-footer {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 20px;
border-top: 1px solid #eee;
font-size: 14px;
color: var(--jamie-main);
}
.slide-number {
background: var(--jamie-green);
color: var(--jamie-white);
width: 32px;
height: 32px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
}
/* Section Slide */
.slide-section {
background: var(--jamie-green);
color: var(--jamie-white);
justify-content: center;
align-items: center;
text-align: center;
}
.slide-section h2 {
font-size: 64px;
font-weight: 700;
}
.slide-section .section-num {
font-size: 120px;
font-weight: 700;
opacity: 0.3;
position: absolute;
top: 40px;
right: 80px;
}
/* Content Elements */
.bullet-list {
list-style: none;
font-size: 28px;
line-height: 2;
}
.bullet-list li {
display: flex;
align-items: flex-start;
gap: 20px;
margin-bottom: 16px;
}
.bullet-list li::before {
content: '';
width: 12px;
height: 12px;
background: var(--jamie-green);
border-radius: 50%;
margin-top: 14px;
flex-shrink: 0;
}
.two-column {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
}
.stat-box {
background: var(--jamie-gray, #f5f5f5);
padding: 40px;
border-radius: 16px;
text-align: center;
}
.stat-number {
font-size: 72px;
font-weight: 700;
color: var(--jamie-green);
line-height: 1;
}
.stat-label {
font-size: 20px;
color: var(--jamie-main);
margin-top: 12px;
}
.highlight-box {
background: linear-gradient(135deg, var(--jamie-green), var(--jamie-light-green));
color: var(--jamie-white);
padding: 40px;
border-radius: 16px;
font-size: 24px;
line-height: 1.6;
}
.quote-box {
font-size: 32px;
font-style: italic;
color: var(--jamie-main);
border-left: 6px solid var(--jamie-green);
padding-left: 30px;
margin: 40px 0;
}
/* Table */
.slide-table {
width: 100%;
border-collapse: collapse;
font-size: 20px;
}
.slide-table th {
background: var(--jamie-green);
color: var(--jamie-white);
padding: 16px 24px;
text-align: left;
}
.slide-table td {
padding: 16px 24px;
border-bottom: 1px solid #eee;
}
/* End Slide */
.slide-end {
background: var(--jamie-black);
color: var(--jamie-white);
justify-content: center;
align-items: center;
text-align: center;
}
.slide-end .logo {
width: 80px;
height: 80px;
border: 2px solid var(--jamie-green);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 36px;
font-weight: bold;
color: var(--jamie-green);
margin-bottom: 30px;
}
.slide-end h2 {
font-size: 48px;
margin-bottom: 20px;
}
.slide-end .contact {
font-size: 20px;
color: var(--jamie-main);
line-height: 1.8;
}
/* Print / PDF */
@media print {
.slide {
width: 100%;
height: 100vh;
page-break-after: always;
}
}
</style>
</head>
<body>
<!-- Slide 1: Title -->
<div class="slide slide-title">
<div class="logo">J</div>
<h1>{{TITLE}}</h1>
<p class="subtitle">{{SUBTITLE}}</p>
<p class="meta">제이미성형외과 | {{DATE}}</p>
</div>
<!-- Slide 2: Section Divider -->
<div class="slide slide-section">
<span class="section-num">01</span>
<h2>{{SECTION_1_TITLE}}</h2>
</div>
<!-- Slide 3: Content -->
<div class="slide slide-content">
<div class="slide-header">
<h2>{{SLIDE_3_TITLE}}</h2>
</div>
<div class="slide-body">
<ul class="bullet-list">
{{SLIDE_3_BULLETS}}
</ul>
</div>
<div class="slide-footer">
<span>제이미성형외과</span>
<span class="slide-number">3</span>
</div>
</div>
<!-- Slide 4: Two Column -->
<div class="slide slide-content">
<div class="slide-header">
<h2>{{SLIDE_4_TITLE}}</h2>
</div>
<div class="slide-body">
<div class="two-column">
<div>
{{SLIDE_4_LEFT}}
</div>
<div>
{{SLIDE_4_RIGHT}}
</div>
</div>
</div>
<div class="slide-footer">
<span>제이미성형외과</span>
<span class="slide-number">4</span>
</div>
</div>
<!-- Slide 5: Stats -->
<div class="slide slide-content">
<div class="slide-header">
<h2>{{SLIDE_5_TITLE}}</h2>
</div>
<div class="slide-body">
<div class="two-column">
<div class="stat-box">
<div class="stat-number">{{STAT_1_NUMBER}}</div>
<div class="stat-label">{{STAT_1_LABEL}}</div>
</div>
<div class="stat-box">
<div class="stat-number">{{STAT_2_NUMBER}}</div>
<div class="stat-label">{{STAT_2_LABEL}}</div>
</div>
</div>
</div>
<div class="slide-footer">
<span>제이미성형외과</span>
<span class="slide-number">5</span>
</div>
</div>
<!-- Slide 6: Quote -->
<div class="slide slide-content">
<div class="slide-header">
<h2>핵심 메시지</h2>
</div>
<div class="slide-body">
<div class="quote-box">
"{{QUOTE}}"
</div>
<div class="highlight-box">
{{HIGHLIGHT_MESSAGE}}
</div>
</div>
<div class="slide-footer">
<span>제이미성형외과</span>
<span class="slide-number">6</span>
</div>
</div>
<!-- End Slide -->
<div class="slide slide-end">
<div class="logo">J</div>
<h2>감사합니다</h2>
<p class="contact">
제이미성형외과<br>
Jamie Plastic Surgery Clinic<br><br>
{{CONTACT_INFO}}
</p>
</div>
</body>
</html>

View File

@@ -0,0 +1,129 @@
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{TITLE}} | 제이미성형외과</title>
<link rel="stylesheet" href="../styles/jamie-brand.css">
<style>
/* Additional inline styles for standalone HTML */
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
</style>
</head>
<body>
<!-- Cover Page -->
<div class="jamie-cover">
<div class="jamie-cover-logo">
<!-- SVG Logo Placeholder -->
<svg width="120" height="120" viewBox="0 0 120 120" fill="none">
<circle cx="60" cy="60" r="58" stroke="#79A233" stroke-width="4"/>
<text x="60" y="70" text-anchor="middle" fill="#79A233" font-size="32" font-weight="bold">J</text>
</svg>
</div>
<h1>{{TITLE}}</h1>
<p class="subtitle">{{SUBTITLE}}</p>
<p class="meta">
제이미성형외과<br>
{{DATE}}
</p>
</div>
<!-- Document Content -->
<div class="jamie-document">
<!-- Header -->
<header class="jamie-header">
<div class="jamie-header-text">
<span class="jamie-header-title">제이미성형외과</span>
</div>
<div class="jamie-header-text">
<span class="jamie-header-title">{{DOCUMENT_TYPE}}</span>
</div>
</header>
<!-- Executive Summary -->
<section class="jamie-section">
<div class="jamie-section-header">
<span class="jamie-section-number">1</span>
<h2>개요</h2>
</div>
<div class="jamie-card jamie-card-accent">
<p>{{SUMMARY}}</p>
</div>
</section>
<!-- Key Findings -->
<section class="jamie-section">
<div class="jamie-section-header">
<span class="jamie-section-number">2</span>
<h2>주요 내용</h2>
</div>
<div class="jamie-callout">
<div class="jamie-callout-title">핵심 포인트</div>
<ul class="jamie-list">
<li>{{KEY_POINT_1}}</li>
<li>{{KEY_POINT_2}}</li>
<li>{{KEY_POINT_3}}</li>
</ul>
</div>
{{CONTENT}}
</section>
<!-- Recommendations -->
<section class="jamie-section">
<div class="jamie-section-header">
<span class="jamie-section-number">3</span>
<h2>권장 사항</h2>
</div>
<div class="jamie-two-col">
<div class="jamie-card">
<h4>✅ Do's</h4>
<ul class="jamie-checklist">
{{DOS_LIST}}
</ul>
</div>
<div class="jamie-card">
<h4>❌ Don'ts</h4>
<ul class="jamie-list">
{{DONTS_LIST}}
</ul>
</div>
</div>
</section>
<!-- Status / Results -->
<section class="jamie-section">
<div class="jamie-section-header">
<span class="jamie-section-number">4</span>
<h2>결과</h2>
</div>
<table class="jamie-table">
<thead>
<tr>
<th>항목</th>
<th>상태</th>
<th>비고</th>
</tr>
</thead>
<tbody>
{{TABLE_ROWS}}
</tbody>
</table>
</section>
<!-- Footer -->
<footer class="jamie-footer">
<p>
<strong>제이미성형외과</strong> | Jamie Plastic Surgery Clinic<br>
본 문서는 내부 검토용으로 작성되었습니다.<br>
{{DATE}} | Confidential
</p>
</footer>
</div>
</body>
</html>

View File

@@ -0,0 +1,315 @@
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>브랜드 검토 결과 | 제이미성형외과</title>
<style>
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
:root {
--jamie-green: #79A233;
--jamie-light-green: #AFCC6D;
--jamie-main: #6d7856;
--jamie-black: #000000;
--jamie-white: #FFFFFF;
--jamie-gray: #f5f5f5;
--status-pass: #22c55e;
--status-warn: #f59e0b;
--status-fail: #ef4444;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Pretendard', sans-serif;
background: var(--jamie-gray);
padding: 40px 20px;
min-height: 100vh;
}
.container {
max-width: 800px;
margin: 0 auto;
background: var(--jamie-white);
border-radius: 16px;
box-shadow: 0 4px 24px rgba(0,0,0,0.1);
overflow: hidden;
}
/* Header */
.header {
background: var(--jamie-black);
color: var(--jamie-white);
padding: 32px;
text-align: center;
}
.header-logo {
width: 48px;
height: 48px;
background: var(--jamie-green);
border-radius: 50%;
display: inline-flex;
align-items: center;
justify-content: center;
font-size: 24px;
font-weight: bold;
margin-bottom: 16px;
}
.header h1 {
font-size: 24px;
margin-bottom: 8px;
}
.header .subtitle {
color: var(--jamie-main);
font-size: 14px;
}
/* Score Section */
.score-section {
padding: 32px;
text-align: center;
border-bottom: 1px solid var(--jamie-gray);
}
.score-circle {
width: 140px;
height: 140px;
border-radius: 50%;
display: inline-flex;
flex-direction: column;
align-items: center;
justify-content: center;
margin-bottom: 16px;
}
.score-pass { background: linear-gradient(135deg, var(--status-pass), #16a34a); }
.score-warn { background: linear-gradient(135deg, var(--status-warn), #d97706); }
.score-fail { background: linear-gradient(135deg, var(--status-fail), #dc2626); }
.score-number {
font-size: 48px;
font-weight: 700;
color: var(--jamie-white);
}
.score-label {
font-size: 14px;
color: rgba(255,255,255,0.8);
}
.score-text {
font-size: 18px;
font-weight: 600;
color: var(--jamie-black);
}
/* Criteria Grid */
.criteria-section {
padding: 32px;
}
.section-title {
font-size: 18px;
font-weight: 700;
margin-bottom: 20px;
color: var(--jamie-black);
display: flex;
align-items: center;
gap: 8px;
}
.section-title::before {
content: '';
width: 4px;
height: 20px;
background: var(--jamie-green);
border-radius: 2px;
}
.criteria-grid {
display: grid;
gap: 12px;
}
.criteria-item {
display: flex;
align-items: center;
justify-content: space-between;
padding: 16px;
background: var(--jamie-gray);
border-radius: 8px;
}
.criteria-name {
font-weight: 500;
}
.criteria-status {
display: flex;
align-items: center;
gap: 8px;
}
.status-icon {
width: 24px;
height: 24px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 12px;
color: var(--jamie-white);
}
.status-pass { background: var(--status-pass); }
.status-warn { background: var(--status-warn); }
.status-fail { background: var(--status-fail); }
/* Issues Section */
.issues-section {
padding: 0 32px 32px;
}
.issue-card {
background: #fef2f2;
border-left: 4px solid var(--status-fail);
padding: 16px;
border-radius: 0 8px 8px 0;
margin-bottom: 12px;
}
.issue-card.warning {
background: #fffbeb;
border-left-color: var(--status-warn);
}
.issue-title {
font-weight: 600;
margin-bottom: 4px;
font-size: 14px;
}
.issue-original {
background: rgba(0,0,0,0.05);
padding: 8px 12px;
border-radius: 4px;
font-size: 14px;
margin: 8px 0;
color: #666;
}
.issue-suggestion {
font-size: 14px;
color: var(--jamie-green);
}
.issue-suggestion strong {
color: var(--jamie-black);
}
/* Recommendations */
.recommendations-section {
padding: 0 32px 32px;
}
.recommendation-list {
list-style: none;
}
.recommendation-list li {
display: flex;
align-items: flex-start;
gap: 12px;
padding: 12px 0;
border-bottom: 1px solid var(--jamie-gray);
}
.recommendation-list li:last-child {
border-bottom: none;
}
.rec-icon {
width: 24px;
height: 24px;
background: var(--jamie-light-green);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
flex-shrink: 0;
color: var(--jamie-green);
font-size: 12px;
}
/* Footer */
.footer {
background: var(--jamie-gray);
padding: 24px 32px;
text-align: center;
font-size: 12px;
color: var(--jamie-main);
}
.footer strong {
color: var(--jamie-black);
}
/* Print */
@media print {
body { background: white; padding: 0; }
.container { box-shadow: none; }
}
</style>
</head>
<body>
<div class="container">
<!-- Header -->
<div class="header">
<div class="header-logo">J</div>
<h1>브랜드 검토 결과</h1>
<p class="subtitle">Brand Compliance Review | {{DATE}}</p>
</div>
<!-- Score -->
<div class="score-section">
<div class="score-circle {{SCORE_CLASS}}">
<span class="score-number">{{SCORE}}</span>
<span class="score-label">/ 100</span>
</div>
<p class="score-text">{{SCORE_MESSAGE}}</p>
</div>
<!-- Criteria -->
<div class="criteria-section">
<h2 class="section-title">검토 항목</h2>
<div class="criteria-grid">
{{CRITERIA_ITEMS}}
</div>
</div>
<!-- Issues -->
<div class="issues-section">
<h2 class="section-title">수정 필요 사항</h2>
{{ISSUES}}
</div>
<!-- Recommendations -->
<div class="recommendations-section">
<h2 class="section-title">권장 사항</h2>
<ul class="recommendation-list">
{{RECOMMENDATIONS}}
</ul>
</div>
<!-- Footer -->
<div class="footer">
<strong>제이미성형외과</strong> Brand Guardian<br>
본 검토는 브랜드 가이드라인 v1.0 기준으로 수행되었습니다.
</div>
</div>
</body>
</html>

View File

@@ -0,0 +1,86 @@
# {{TITLE}}
> **작성일**: {{DATE}}
> **카테고리**: {{CATEGORY}}
> **타겟**: {{TARGET_AUDIENCE}}
---
안녕하세요. 제이미 성형외과 정기호 원장입니다.
오늘은 {{TARGET_CONCERN}}으로 고민하시는 분들을 위한 {{PROCEDURE_NAME}}에 대해 말씀드리겠습니다.
---
## {{PROBLEM_TITLE}}
{{PROBLEM_DESCRIPTION}}
[이미지: {{IMAGE_1_DESCRIPTION}} | 권장 크기: 800x500px]
---
## {{CAUSE_TITLE}}
{{CAUSE_DESCRIPTION}}
### 주요 원인
- {{CAUSE_1}}
- {{CAUSE_2}}
- {{CAUSE_3}}
---
## {{SOLUTION_TITLE}}
{{SOLUTION_DESCRIPTION}}
### 제이미 {{PROCEDURE_NAME}}의 특징
| 항목 | 내용 |
|------|------|
| 수술 시간 | {{DURATION}} |
| 마취 방법 | {{ANESTHESIA}} |
| 회복 기간 | {{RECOVERY}} |
| AS 기간 | {{WARRANTY}} |
[이미지: {{IMAGE_2_DESCRIPTION}} | 권장 크기: 800x600px]
---
## 기대 효과
{{EXPECTED_RESULTS}}
### 이런 분들께 추천드립니다
- {{RECOMMEND_1}}
- {{RECOMMEND_2}}
- {{RECOMMEND_3}}
---
## 제이미 성형외과만의 차별점
> "{{DIFFERENTIATOR_QUOTE}}"
{{DIFFERENTIATOR_DESCRIPTION}}
---
## 마무리
{{CONCLUSION}}
{{TARGET_CONCERN}}이시라면 지금 바로 제이미 성형외과의 상담을 추천드립니다.
더 궁금한 점이 있으시거나 자세한 상담을 원하시면 언제든지 제이미 성형외과로 문의해 주시기 바랍니다.
---
**#제이미성형외과** **#{{HASHTAG_1}}** **#{{HASHTAG_2}}** **#{{HASHTAG_3}}**
---
*본 포스팅은 제이미성형외과의 공식 블로그 콘텐츠입니다.*

View File

@@ -0,0 +1,125 @@
# 브랜드 검토 보고서
> **검토일**: {{DATE}}
> **검토자**: Brand Guardian AI
> **문서 유형**: {{DOCUMENT_TYPE}}
---
## 검토 결과 요약
| 항목 | 점수 | 상태 |
|------|------|------|
| **종합 점수** | **{{TOTAL_SCORE}}/100** | {{STATUS_BADGE}} |
| 톤앤매너 | {{TONE_SCORE}}/100 | {{TONE_STATUS}} |
| 브랜드 메시지 | {{MESSAGE_SCORE}}/100 | {{MESSAGE_STATUS}} |
| 구조/형식 | {{STRUCTURE_SCORE}}/100 | {{STRUCTURE_STATUS}} |
| 금지 표현 | {{PROHIBITED_SCORE}}/100 | {{PROHIBITED_STATUS}} |
---
## 1. 톤앤매너 검토
### 종결 어미 분석
| 유형 | 현재 비율 | 권장 비율 | 상태 |
|------|----------|----------|------|
| 격식체 (~습니다) | {{FORMAL_RATIO}}% | 80-90% | {{FORMAL_STATUS}} |
| 서비스형 (~드립니다) | {{SERVICE_RATIO}}% | ~6% | {{SERVICE_STATUS}} |
| 부드러운 어미 | {{SOFT_RATIO}}% | 4-10% | {{SOFT_STATUS}} |
### 호칭 사용
{{HONORIFIC_ANALYSIS}}
---
## 2. 브랜드 메시지 검토
### 핵심 가치 반영
- [ ] 자연스러움 강조
- [ ] 안전성 언급
- [ ] 환자 중심 표현
- [ ] 겸손한 자신감
### 발견된 문제
{{MESSAGE_ISSUES}}
---
## 3. 금지 표현 검토
### 발견된 금지 표현
| 위치 | 원문 | 문제점 | 수정 제안 |
|------|------|--------|----------|
{{PROHIBITED_TABLE}}
---
## 4. 수정 권장 사항
### 높은 우선순위
{{HIGH_PRIORITY_FIXES}}
### 중간 우선순위
{{MEDIUM_PRIORITY_FIXES}}
### 낮은 우선순위 (권장)
{{LOW_PRIORITY_FIXES}}
---
## 5. 수정 전/후 비교
### 수정 예시 1
**원문:**
> {{ORIGINAL_1}}
**수정안:**
> {{REVISED_1}}
### 수정 예시 2
**원문:**
> {{ORIGINAL_2}}
**수정안:**
> {{REVISED_2}}
---
## 검토 체크리스트
### 톤앤매너
- [{{CHECKLIST_1}}] 격식체 80% 이상 사용
- [{{CHECKLIST_2}}] 환자분/고객님 호칭 사용
- [{{CHECKLIST_3}}] 과장/절대적 표현 없음
- [{{CHECKLIST_4}}] 타 병원 비교 없음
### 구조
- [{{CHECKLIST_5}}] 표준 인사말 사용
- [{{CHECKLIST_6}}] 공감→교육→해결책 구조
- [{{CHECKLIST_7}}] CTA 포함
### 브랜드 메시지
- [{{CHECKLIST_8}}] 자연스러움 강조
- [{{CHECKLIST_9}}] 쉬운 비유 사용
- [{{CHECKLIST_10}}] 현실적 기대치 설정
---
## 결론
{{CONCLUSION}}
---
*본 검토는 제이미성형외과 브랜드 가이드라인 v1.0 기준으로 수행되었습니다.*
*Brand Guardian AI | {{DATE}}*

View File

@@ -0,0 +1,779 @@
/* Jamie Clinic Brand Style Sheet v2.8 */
/* For HTML documents, reports, and presentations */
/* Updated: 2025-12-09 - Added Video/Motion and Print color systems */
:root {
/* ===================================== */
/* DIGITAL/WEB COLORS (Primary) */
/* ===================================== */
/* Primary Brand Colors */
--jamie-main-green: #6d7856;
--jamie-green: #79A233;
--jamie-light-green: #AFCC6D;
--jamie-black: #000000;
--jamie-white: #FFFFFF;
/* Background Colors */
--jamie-bg: #f1f4eb;
--jamie-bg-warm-1: #f8f4ef;
--jamie-bg-warm-2: #f7f5f4;
--jamie-bg-warm-3: #f6f5f1;
--jamie-bg-warm-4: #f7eee0;
--jamie-gray: #f5f5f5;
--jamie-dark-gray: #333333;
/* ===================================== */
/* VIDEO/MOTION COLORS */
/* ===================================== */
/* Video Backgrounds */
--jamie-video-bg-light: #E8E6E2;
--jamie-video-bg-warm: #EEECE8;
--jamie-video-bg-dark: #2D2D2D;
--jamie-video-bg-charcoal: #333333;
/* Video Gold Accents */
--jamie-video-gold: #B5A040;
--jamie-video-gold-light: #C0AB45;
--jamie-video-gold-dark: #C9B347;
--jamie-video-cta: #C0A940;
/* Decorative Circles */
--jamie-circle-dark: #3D4A3D;
--jamie-circle-charcoal: #4A5A4A;
--jamie-circle-sage: #8FA87A;
--jamie-circle-sage-light: #9CB88A;
--jamie-circle-pale: #C5D4B8;
--jamie-circle-mist: #D5E0C8;
/* Video Text Colors */
--jamie-video-text-dark: #333333;
--jamie-video-text-medium: #3D3D3D;
--jamie-video-text-light: #FFFFFF;
/* ===================================== */
/* PRINT COLORS */
/* ===================================== */
/* Print Backgrounds */
--jamie-print-bg-mint: #E8F5E8;
--jamie-print-bg-soft: #F0F8F0;
--jamie-print-bg-blue: #D0DDE8;
--jamie-print-bg-blue-light: #E0E8F0;
/* Print Primary */
--jamie-print-green: #79A233;
--jamie-print-green-dark: #6D9040;
--jamie-print-gray: #888888;
/* Print Process/Steps */
--jamie-step-light: #C5E0C5;
--jamie-step-medium: #79A233;
--jamie-step-arrow: #79A233;
--jamie-step-text: #333333;
/* ===================================== */
/* TYPOGRAPHY */
/* ===================================== */
/* Korean Fonts */
--font-primary-kr: 'Pretendard', 'Noto Sans KR', 'Apple SD Gothic Neo', sans-serif;
--font-round-kr: 'NanumSquareRound', 'Pretendard', sans-serif;
/* English Fonts */
--font-primary-en: 'Inter', 'Poppins', sans-serif;
/* Aliases */
--font-primary: var(--font-primary-kr);
--font-heading: var(--font-primary-kr);
--font-title-round: var(--font-round-kr);
/* Font Sizes */
--font-size-base: 16px;
--font-size-sm: 14px;
--font-size-lg: 18px;
--font-size-xl: 24px;
--font-size-2xl: 32px;
--font-size-3xl: 48px;
--font-size-4xl: 60px;
/* Line Heights */
--line-height-tight: 1.2;
--line-height-normal: 1.6;
--line-height-relaxed: 1.8;
/* Letter Spacing */
--letter-spacing-tight: -0.03em;
--letter-spacing-normal: 0;
/* ===================================== */
/* SPACING */
/* ===================================== */
--spacing-xs: 4px;
--spacing-sm: 8px;
--spacing-md: 16px;
--spacing-lg: 24px;
--spacing-xl: 32px;
--spacing-2xl: 48px;
--spacing-3xl: 64px;
/* Print Margins (A4) */
--print-margin-top: 25mm;
--print-margin-bottom: 20mm;
--print-margin-left: 20mm;
--print-margin-right: 20mm;
}
/* ===================================== */
/* BASE RESET */
/* ===================================== */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: var(--font-primary);
font-size: var(--font-size-base);
line-height: var(--line-height-normal);
color: var(--jamie-dark-gray);
background-color: var(--jamie-white);
letter-spacing: var(--letter-spacing-tight);
}
/* ===================================== */
/* TYPOGRAPHY */
/* ===================================== */
h1, h2, h3, h4, h5, h6 {
font-family: var(--font-heading);
font-weight: 700;
line-height: var(--line-height-tight);
margin-bottom: var(--spacing-md);
color: var(--jamie-black);
letter-spacing: var(--letter-spacing-tight);
}
h1 { font-size: var(--font-size-3xl); }
h2 { font-size: var(--font-size-2xl); }
h3 { font-size: var(--font-size-xl); }
h4 { font-size: var(--font-size-lg); }
p {
margin-bottom: var(--spacing-md);
}
/* Video Title Style */
.jamie-title-video {
font-family: var(--font-title-round);
font-weight: 800;
color: var(--jamie-video-gold);
}
.jamie-title-video-dark {
color: var(--jamie-video-gold-dark);
}
/* ===================================== */
/* BRAND ACCENTS */
/* ===================================== */
.jamie-accent {
color: var(--jamie-green);
}
.jamie-accent-gold {
color: var(--jamie-video-gold);
}
.jamie-highlight {
background-color: var(--jamie-light-green);
padding: var(--spacing-xs) var(--spacing-sm);
border-radius: 4px;
}
/* ===================================== */
/* DOCUMENT CONTAINER */
/* ===================================== */
.jamie-document {
max-width: 800px;
margin: 0 auto;
padding: var(--spacing-2xl);
}
.jamie-document-wide {
max-width: 1200px;
}
/* ===================================== */
/* HEADER */
/* ===================================== */
.jamie-header {
display: flex;
align-items: center;
justify-content: space-between;
padding: var(--spacing-lg) 0;
border-bottom: 2px solid var(--jamie-green);
margin-bottom: var(--spacing-2xl);
}
.jamie-logo {
height: 48px;
width: auto;
}
.jamie-header-text {
text-align: right;
}
.jamie-header-title {
font-size: var(--font-size-sm);
color: var(--jamie-main-green);
text-transform: uppercase;
letter-spacing: 1px;
}
/* ===================================== */
/* COVER PAGE */
/* ===================================== */
.jamie-cover {
min-height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
background: linear-gradient(135deg, var(--jamie-black) 0%, #1a1a1a 100%);
color: var(--jamie-white);
padding: var(--spacing-3xl);
}
.jamie-cover-logo {
width: 120px;
margin-bottom: var(--spacing-2xl);
}
.jamie-cover h1 {
color: var(--jamie-white);
font-size: var(--font-size-3xl);
margin-bottom: var(--spacing-md);
}
.jamie-cover .subtitle {
font-size: var(--font-size-lg);
color: var(--jamie-light-green);
margin-bottom: var(--spacing-2xl);
}
.jamie-cover .meta {
font-size: var(--font-size-sm);
color: var(--jamie-main-green);
}
/* Video-style Cover (Light) */
.jamie-cover-video {
background: var(--jamie-video-bg-light);
color: var(--jamie-video-text-dark);
}
.jamie-cover-video h1 {
color: var(--jamie-video-gold);
font-family: var(--font-title-round);
}
.jamie-cover-video .subtitle {
color: var(--jamie-video-text-dark);
}
/* ===================================== */
/* DECORATIVE CIRCLES (Video Style) */
/* ===================================== */
.jamie-circle {
position: absolute;
border-radius: 50%;
pointer-events: none;
}
.jamie-circle-lg {
width: 180px;
height: 180px;
}
.jamie-circle-md {
width: 100px;
height: 100px;
}
.jamie-circle-sm {
width: 40px;
height: 40px;
}
.jamie-circle-dark { background-color: var(--jamie-circle-dark); }
.jamie-circle-charcoal { background-color: var(--jamie-circle-charcoal); }
.jamie-circle-sage { background-color: var(--jamie-circle-sage); }
.jamie-circle-sage-light { background-color: var(--jamie-circle-sage-light); }
.jamie-circle-pale { background-color: var(--jamie-circle-pale); }
.jamie-circle-mist { background-color: var(--jamie-circle-mist); }
.jamie-circle-gold { background-color: var(--jamie-video-cta); }
/* ===================================== */
/* SECTION */
/* ===================================== */
.jamie-section {
margin-bottom: var(--spacing-3xl);
page-break-inside: avoid;
}
.jamie-section-header {
display: flex;
align-items: center;
margin-bottom: var(--spacing-lg);
padding-bottom: var(--spacing-sm);
border-bottom: 1px solid var(--jamie-gray);
}
.jamie-section-number {
display: inline-flex;
align-items: center;
justify-content: center;
width: 32px;
height: 32px;
background-color: var(--jamie-green);
color: var(--jamie-white);
font-weight: 700;
border-radius: 50%;
margin-right: var(--spacing-md);
font-size: var(--font-size-sm);
}
/* ===================================== */
/* CARDS */
/* ===================================== */
.jamie-card {
background: var(--jamie-white);
border: 1px solid var(--jamie-gray);
border-radius: 8px;
padding: var(--spacing-lg);
margin-bottom: var(--spacing-md);
box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.jamie-card-accent {
border-left: 4px solid var(--jamie-green);
}
.jamie-card-highlight {
background: linear-gradient(135deg, var(--jamie-green) 0%, var(--jamie-light-green) 100%);
color: var(--jamie-white);
}
.jamie-card-highlight h3,
.jamie-card-highlight h4 {
color: var(--jamie-white);
}
/* Video-style Card */
.jamie-card-video {
background: var(--jamie-video-bg-light);
border: none;
border-radius: 12px;
}
.jamie-card-video-dark {
background: var(--jamie-video-bg-dark);
color: var(--jamie-video-text-light);
}
/* Print-style Card */
.jamie-card-print {
background: var(--jamie-print-bg-mint);
border: none;
}
/* ===================================== */
/* TABLES */
/* ===================================== */
.jamie-table {
width: 100%;
border-collapse: collapse;
margin-bottom: var(--spacing-lg);
font-size: var(--font-size-sm);
}
.jamie-table th {
background-color: var(--jamie-green);
color: var(--jamie-white);
padding: var(--spacing-sm) var(--spacing-md);
text-align: left;
font-weight: 600;
}
.jamie-table td {
padding: var(--spacing-sm) var(--spacing-md);
border-bottom: 1px solid var(--jamie-gray);
}
.jamie-table tr:hover {
background-color: var(--jamie-gray);
}
/* Video-style Table */
.jamie-table-video th {
background-color: var(--jamie-video-gold);
}
/* ===================================== */
/* LISTS */
/* ===================================== */
.jamie-list {
list-style: none;
padding-left: 0;
}
.jamie-list li {
position: relative;
padding-left: var(--spacing-lg);
margin-bottom: var(--spacing-sm);
}
.jamie-list li::before {
content: '';
position: absolute;
left: 0;
top: 8px;
width: 8px;
height: 8px;
background-color: var(--jamie-green);
border-radius: 50%;
}
/* Checklist */
.jamie-checklist li::before {
content: '✓';
background: none;
color: var(--jamie-green);
font-weight: 700;
width: auto;
height: auto;
top: 0;
}
/* ===================================== */
/* QUOTES / CALLOUTS */
/* ===================================== */
.jamie-quote {
background-color: var(--jamie-gray);
border-left: 4px solid var(--jamie-green);
padding: var(--spacing-lg);
margin: var(--spacing-lg) 0;
font-style: italic;
}
.jamie-callout {
background-color: #f0f7e6;
border: 1px solid var(--jamie-light-green);
border-radius: 8px;
padding: var(--spacing-lg);
margin: var(--spacing-lg) 0;
}
.jamie-callout-title {
display: flex;
align-items: center;
font-weight: 700;
color: var(--jamie-green);
margin-bottom: var(--spacing-sm);
}
/* Video-style Callout */
.jamie-callout-video {
background-color: var(--jamie-video-bg-warm);
border: none;
border-left: 4px solid var(--jamie-video-gold);
}
.jamie-callout-video .jamie-callout-title {
color: var(--jamie-video-gold);
}
/* ===================================== */
/* STATUS BADGES */
/* ===================================== */
.jamie-badge {
display: inline-block;
padding: var(--spacing-xs) var(--spacing-sm);
border-radius: 4px;
font-size: var(--font-size-sm);
font-weight: 600;
}
.jamie-badge-success {
background-color: var(--jamie-green);
color: var(--jamie-white);
}
.jamie-badge-warning {
background-color: #f59e0b;
color: var(--jamie-white);
}
.jamie-badge-error {
background-color: #ef4444;
color: var(--jamie-white);
}
.jamie-badge-info {
background-color: var(--jamie-main-green);
color: var(--jamie-white);
}
.jamie-badge-gold {
background-color: var(--jamie-video-gold);
color: var(--jamie-white);
}
/* ===================================== */
/* PROGRESS BAR */
/* ===================================== */
.jamie-progress {
height: 8px;
background-color: var(--jamie-gray);
border-radius: 4px;
overflow: hidden;
}
.jamie-progress-bar {
height: 100%;
background-color: var(--jamie-green);
transition: width 0.3s ease;
}
/* ===================================== */
/* PROCESS STEPS (Print Style) */
/* ===================================== */
.jamie-steps {
display: flex;
align-items: center;
justify-content: center;
gap: var(--spacing-md);
margin: var(--spacing-xl) 0;
}
.jamie-step {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
}
.jamie-step-circle {
width: 60px;
height: 60px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
margin-bottom: var(--spacing-sm);
}
.jamie-step-circle-light {
background-color: var(--jamie-step-light);
color: var(--jamie-step-text);
}
.jamie-step-circle-medium {
background-color: var(--jamie-step-medium);
color: var(--jamie-white);
}
.jamie-step-arrow {
color: var(--jamie-step-arrow);
font-size: var(--font-size-xl);
}
/* ===================================== */
/* FOOTER */
/* ===================================== */
.jamie-footer {
margin-top: var(--spacing-3xl);
padding-top: var(--spacing-lg);
border-top: 1px solid var(--jamie-gray);
text-align: center;
font-size: var(--font-size-sm);
color: var(--jamie-main-green);
}
/* ===================================== */
/* PRINT STYLES */
/* ===================================== */
@media print {
@page {
margin-top: var(--print-margin-top);
margin-bottom: var(--print-margin-bottom);
margin-left: var(--print-margin-left);
margin-right: var(--print-margin-right);
}
.jamie-cover {
min-height: auto;
page-break-after: always;
}
.jamie-section {
page-break-inside: avoid;
}
body {
font-size: 12pt;
line-height: var(--line-height-relaxed);
}
.jamie-card {
box-shadow: none;
border: 1px solid #ddd;
}
/* Print-friendly backgrounds */
.jamie-cover {
background: var(--jamie-print-bg-mint);
color: var(--jamie-black);
}
.jamie-cover h1 {
color: var(--jamie-print-green);
}
}
/* ===================================== */
/* SLIDE LAYOUT (Presentations) */
/* ===================================== */
.jamie-slide {
min-height: 100vh;
padding: var(--spacing-3xl);
display: flex;
flex-direction: column;
page-break-after: always;
position: relative;
overflow: hidden;
}
.jamie-slide-title {
background-color: var(--jamie-black);
color: var(--jamie-white);
}
.jamie-slide-video {
background-color: var(--jamie-video-bg-light);
color: var(--jamie-video-text-dark);
}
.jamie-slide-video h1,
.jamie-slide-video h2 {
color: var(--jamie-video-gold);
}
.jamie-slide-video-dark {
background-color: var(--jamie-video-bg-dark);
color: var(--jamie-video-text-light);
}
.jamie-slide-video-dark h1,
.jamie-slide-video-dark h2 {
color: var(--jamie-video-gold-dark);
}
.jamie-slide-content {
flex: 1;
display: flex;
flex-direction: column;
justify-content: center;
}
.jamie-slide-footer {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: var(--spacing-md);
border-top: 1px solid var(--jamie-gray);
font-size: var(--font-size-sm);
color: var(--jamie-main-green);
}
/* ===================================== */
/* TWO COLUMN LAYOUT */
/* ===================================== */
.jamie-two-col {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--spacing-xl);
}
/* ===================================== */
/* RESPONSIVE */
/* ===================================== */
@media (max-width: 768px) {
.jamie-two-col {
grid-template-columns: 1fr;
}
.jamie-document {
padding: var(--spacing-lg);
}
h1 { font-size: var(--font-size-2xl); }
h2 { font-size: var(--font-size-xl); }
.jamie-steps {
flex-direction: column;
}
.jamie-step-arrow {
transform: rotate(90deg);
}
}
/* ===================================== */
/* UTILITY CLASSES */
/* ===================================== */
/* Backgrounds */
.bg-video-light { background-color: var(--jamie-video-bg-light); }
.bg-video-warm { background-color: var(--jamie-video-bg-warm); }
.bg-video-dark { background-color: var(--jamie-video-bg-dark); }
.bg-print-mint { background-color: var(--jamie-print-bg-mint); }
.bg-print-blue { background-color: var(--jamie-print-bg-blue); }
/* Text Colors */
.text-gold { color: var(--jamie-video-gold); }
.text-green { color: var(--jamie-green); }
.text-main { color: var(--jamie-main-green); }
.text-light { color: var(--jamie-video-text-light); }
.text-dark { color: var(--jamie-video-text-dark); }
/* Font Families */
.font-round { font-family: var(--font-round-kr); }
.font-primary { font-family: var(--font-primary-kr); }
.font-en { font-family: var(--font-primary-en); }