* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

:root {
  /* ── 키 컬러 : 딥 네이비 (2026-08-24 확정, 이전 플러스빌리티 초록 폐기) ── */
  --key:        #1B2B4A;
  --key-deep:   #111C33;
  --key-mid:    #31507F;
  --key-light:  #E9EDF4;   /* 아이콘 칩 바탕 */

  /* ── 액센트 : 웜 골드 (라벨 · 연도 · 숫자 전용) ── */
  --acc:        #B08D4F;
  --acc-light:  #D9BE87;   /* 다크 위 액센트 */
  --acc-deep:   #9A7838;   /* 밝은 바탕 위 액센트 */

  /* ── 바탕 4단 : 전부 한 계열(따뜻한 아이보리)에서만 뽑는다 ──
     단락 구분은 색상 차이가 아니라 밝기 차이가 담당한다. 여기 없는 색을
     블록에 직접 박지 말 것 — 그렇게 늘어난 9종이 「색이 안 맞는다」의 원인이었다. */
  --s0:         #FFFFFF;
  --s1:         #F8F6F1;
  --s2:         #F1EDE4;
  --s3:         #E8E1D3;

  /* ── 글자 · 선 ── */
  --ink:        #181A1F;
  --gray:       #6C7180;   /* 키 컬러 색상을 살짝 머금은 회색 */
  --line:       #DEDACE;
  --white:      #FFFFFF;
  --paper:      #F5F1E8;   /* 어두운 바탕 위 밝은 글자 · 면 */
}

html, body {
  width: 100%;
  overflow-x: hidden;
  background: var(--ink);
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  word-break: keep-all;
}

body {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100vh;
  box-shadow: 0 0 60px rgba(0,0,0,0.25);
}

section { position: relative; padding: 40px 24px; }

.section-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: var(--acc);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.section-title {
  font-size: 24px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}
.section-title em { color: var(--key); font-style: normal; font-weight: 800; }
.section-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.75;
  word-break: keep-all;
}

/* ==================== REVEAL ==================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ==================== HERO ==================== */
.hero {
  position: relative;
  min-height: 100svh;
  padding: 0;
  display: flex;
  flex-direction: column;
  background: var(--white);
}
.hero-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 75vh;
  background: #C8C4BC;
  overflow: hidden;
  flex-shrink: 0;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
  transform: scale(1.02);
  transform-origin: center 30%;
}

.hero-panel {
  flex: 1;
  background: var(--key);
  color: var(--white);
  padding: 40px 28px calc(env(safe-area-inset-bottom, 0px) + 44px);
  position: relative;
  margin-top: -2px;
  z-index: 1;
}

.hero-logo { margin-bottom: 22px; }

/* 히어로 입장 — 스크롤 전에 보이는 영역이라 로드 즉시 순서대로 올라온다 */
.hero-panel > * { animation: heroIn .62s cubic-bezier(.22,.75,.3,1) both; }
.hero-panel > .hero-logo      { animation-delay: .10s; }
.hero-panel > .hero-tag       { animation-delay: .20s; }
.hero-panel > .hero-headline  { animation-delay: .28s; }
.hero-panel > .hero-headline-en { animation-delay: .36s; }
.hero-panel > .hero-greeting  { animation-delay: .46s; }
@keyframes heroIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.hero-photo img { animation: heroPhoto 1.1s ease both; }
@keyframes heroPhoto { from { opacity: 0; } to { opacity: 1; } }
.hero-logo-text { display: flex; flex-direction: column; }
.hero-logo-name {
  /* Cormorant Garamond 에는 한글 글리프가 없어 「디딤돌스토리」가 시스템 명조로
     떨어졌다. 상호는 고딕(Pretendard)으로 고정한다 — 여기에 세리프를 다시 넣지 말 것. */
  font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: var(--white);
  line-height: 1.15;
}
.hero-logo-sub {
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  margin-top: 2px;
}

.hero-tag {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.8px;
  color: var(--acc-light);
  padding: 5px 12px;
  background: rgba(176,141,79,0.15);
  border-radius: 100px;
  border: 1px solid rgba(176,141,79,0.35);
  margin-bottom: 18px;
  -webkit-user-select: none;
  user-select: none;
}

.hero-headline {
  font-family: 'Pretendard Variable', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  line-height: 0.98;
  letter-spacing: -1px;
  margin-bottom: 6px;
}
.hero-headline-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero-greeting {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 13.5px;
  color: rgba(255,255,255,0.80);
  line-height: 1.75;
}
.hero-greeting-hi {
  display: block;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.3px;
}

/* ==================== CONNECT ==================== */
.connect { background: var(--s2); }
.connect .section-label { color: var(--key); }
.connect .section-title em { color: var(--key); }

.channel-grid { margin-top: 24px; }

/* 메인 CTA — 카카오 상담 */
.kakao-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 24px;
  background: linear-gradient(135deg, var(--key-mid) 0%, var(--key) 55%, var(--key-deep) 100%);
  border-radius: 100px;
  text-decoration: none;
  color: var(--paper);
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(27,43,74,0.32), inset 0 1px 0 rgba(255,255,255,0.10);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.kakao-cta:active { transform: scale(0.97); }
.kakao-cta-glow {
  position: absolute;
  top: -60%; left: -20%;
  width: 50%; height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: rotate(18deg);
  animation: ctaSheen 4.5s ease-in-out infinite;
}
@keyframes ctaSheen {
  0%, 65% { left: -40%; }
  100% { left: 120%; }
}
.kakao-cta-icon {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  position: relative; z-index: 1;
}
.kakao-cta-icon svg { width: 26px; height: 26px; fill: var(--acc-light); }
.kakao-cta-text {
  font-size: 17px; font-weight: 800; letter-spacing: -0.4px;
  color: var(--paper);
  position: relative; z-index: 1;
}

.channel-note {
  margin: 14px 0 22px;
  text-align: center;
  font-size: 12.5px; font-weight: 500;
  color: var(--gray);
  letter-spacing: -0.2px;
}

/* 아이콘 바 — 보조 채널 */
.channel-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.channel-btn {
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  padding: 6px 0;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.channel-btn:active { transform: scale(0.92); }
.channel-btn-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 18px rgba(27,43,74,0.16);
}
.channel-btn-icon svg { width: 24px; height: 24px; }
.channel-btn-icon.phone { background: var(--key); }
.channel-btn-icon.map { background: var(--key-mid); }
/* 네이버 브랜드 초록(#03C75A)은 화면에서 유일하게 튀는 색이라 뺐다.
   연필 아이콘만으로 블로그인 것이 읽히고, 타일 넷이 한 세트로 보인다. */
.channel-btn-icon.blog { background: var(--key-mid); }
.channel-btn-icon.mail { background: var(--acc-deep); }
.channel-btn-label {
  font-size: 12.5px; font-weight: 700; color: var(--ink);
  letter-spacing: -0.2px;
}

/* ==================== STUDIO (매장 소개) ==================== */
.studio { background: var(--s1); }
.studio-title { text-align: center; }
/* 타이핑 효과 — 칸 고정(고스트) + 글씨만 채움 */
.about-type-line { position: relative; display: inline-block; }
.about-type-line::before { content: attr(data-text); visibility: hidden; }
.about-type-fill { position: absolute; left: 0; top: 0; white-space: nowrap; }
.studio-title em { color: var(--key); font-style: normal; }
.studio .about-keyword-row { justify-content: center; margin-top: 18px; }
/* 매장 사진 — 가로 스와이프 갤러리 */
.studio-gallery {
  margin-top: 24px;
  display: flex; gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding: 2px 24px 6px;
  margin-left: -24px; margin-right: -24px;   /* 좌우 풀블리드 */
  scrollbar-width: none;
}
.studio-gallery::-webkit-scrollbar { display: none; }
.studio-gallery.grab { cursor: grab; }
.studio-gallery.grabbing { cursor: grabbing; }
.studio-gallery img {
  flex: 0 0 auto;
  width: 64%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 16px;
  scroll-snap-align: center;
  box-shadow: 0 8px 22px rgba(27,43,74,0.12);
  -webkit-user-drag: none; user-select: none;
}
.studio-desc { margin-top: 22px; font-size: 14px; color: var(--gray); line-height: 1.7; text-align: center; word-break: keep-all; }

/* ==================== ABOUT ==================== */
.about { background: var(--white); }
.about .section-label { color: var(--acc-deep); }

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.about-title {
  font-size: 30px;
  letter-spacing: -1px;
  text-align: center;
}
.about-type-em { font-style: normal; }
.about-type-cursor {
  display: inline-block;
  width: 2px;
  height: 1.1em;
  background: var(--key);
  vertical-align: middle;
  margin-left: 2px;
  border-radius: 1px;
  animation: cursorBlink 0.7s step-end infinite;
}

.about-keyword-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.about-keyword {
  font-size: 12px; font-weight: 700;
  padding: 7px 15px;
  border-radius: 100px;
  background: rgba(176,141,79,0.16);
  color: var(--acc-deep);
  letter-spacing: -0.2px;
}

.about-quote {
  margin-top: 24px;
  position: relative;
  background: var(--paper);
  border: 1px solid var(--s2);
  border-radius: 14px;
  padding: 28px 24px 20px;
  box-shadow: 0 8px 22px rgba(27,43,74,0.07);
}
/* 약력 박스 안에서는 인용구를 테두리/배경 없이 (박스 하나로) */
.pf-card .about-quote {
  margin-top: 20px;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 24px 0 0;
}
.pf-card .about-quote-text { padding-left: 0; }
.pf-philosophy { margin-top: 6px; }
.pf-philosophy .section-desc { margin-top: 0; }
.about-quote::before { display: none; }
.about-quote-text { font-size: 15px; color: var(--ink); line-height: 1.7; font-weight: 500; letter-spacing: -0.3px; margin-bottom: 14px; }
.about-quote-sig {
  font-size: 13px; font-weight: 700; color: var(--key);
  display: flex; align-items: center; justify-content: flex-end; gap: 8px;
}
.about-quote-sig::before { content: ''; width: 14px; height: 1px; background: var(--key); opacity: 0.5; }

/* ==================== SERVICE ==================== */
.service {
  background: var(--key);
  color: var(--white);
  padding: 52px 24px 54px;
  position: relative; overflow: hidden;
}
.service::before {
  content: '';
  position: absolute; top: -100px; left: -100px;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(176,141,79,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.service::after {
  content: '';
  position: absolute; bottom: -120px; right: -120px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(176,141,79,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.service .section-label { color: var(--acc-light); text-indent: 1.8px; }
.service .section-title { color: var(--white); font-size: 26px; text-align: center; line-height: 1.3; font-weight: 800; letter-spacing: -0.8px; text-indent: -0.8px; }
.service .section-title strong { color: var(--acc-light); font-weight: 800; }
.service-header { text-align: center; margin-bottom: 36px; position: relative; z-index: 1; }

.service-timeline { position: relative; z-index: 1; }
.service-step {
  display: flex; gap: 16px;
  padding-bottom: 28px;
  transition: transform 0.55s ease, opacity 0.55s ease;
}
.service-step:last-child { padding-bottom: 0; }
/* 스태거 등장 */
.service-step:nth-child(1) { transition-delay: 0.05s; }
.service-step:nth-child(2) { transition-delay: 0.18s; }
.service-step:nth-child(3) { transition-delay: 0.31s; }
.service-step:nth-child(4) { transition-delay: 0.44s; }

/* 레일 — 넘버 노드 + 연결선 */
.service-step-rail { position: relative; width: 46px; flex-shrink: 0; display: flex; justify-content: center; }
.service-step-rail::before {
  content: '';
  position: absolute;
  top: 46px; bottom: -28px;
  left: 50%; width: 2px;
  background: linear-gradient(180deg, rgba(176,141,79,0.55), rgba(176,141,79,0.12));
  transform: translateX(-50%) scaleY(0);
  transform-origin: top;
  transition: transform 0.55s ease 0.3s;
}
.service-step.visible .service-step-rail::before { transform: translateX(-50%) scaleY(1); }
.service-step:last-child .service-step-rail::before { display: none; }

.service-step-num {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid rgba(176,141,79,0.55);
  background: var(--key);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 600; font-style: italic;
  color: var(--acc-light);
  position: relative; z-index: 1;
}

/* 콘텐츠 — 아이콘 + 텍스트 */
.service-step-content { display: flex; gap: 14px; flex: 1; padding-top: 1px; min-width: 0; }
.service-step-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(176,141,79,0.16);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--acc-light);
  position: relative;
  animation: serviceIconFloat 4s ease-in-out infinite;
}
.service-step:nth-child(2) .service-step-icon { animation-delay: 0.6s; }
.service-step:nth-child(3) .service-step-icon { animation-delay: 1.2s; }
.service-step-icon::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 12px;
  box-shadow: 0 0 0 0 rgba(176,141,79,0.30);
  animation: serviceIconPulse 4s ease-in-out infinite;
}
.service-step:nth-child(2) .service-step-icon::after { animation-delay: 0.6s; }
.service-step:nth-child(3) .service-step-icon::after { animation-delay: 1.2s; }
.service-step-icon svg { width: 22px; height: 22px; position: relative; z-index: 1; }

@keyframes serviceIconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
@keyframes serviceIconPulse {
  0%, 70%, 100% { box-shadow: 0 0 0 0 rgba(176,141,79,0.30); }
  35% { box-shadow: 0 0 0 8px rgba(176,141,79,0); }
}

.service-step-text { min-width: 0; padding-top: 1px; }
.service-step-title { font-size: 16px; font-weight: 800; color: var(--acc-light); letter-spacing: -0.3px; margin-bottom: 2px; }
.service-step-en {
  display: block;
  font-size: 10.5px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
  margin-bottom: 9px;
}
.service-step-desc { font-size: 12.5px; color: rgba(255,255,255,0.65); line-height: 1.55; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-panel > *, .hero-photo img { animation: none; opacity: 1; transform: none; }
  .bk-note-sweep { animation: none; background-image: none; color: var(--gray); -webkit-text-fill-color: var(--gray); }
  .service-step-icon,
  .service-step-icon::after { animation: none; }
  .service-step-rail::before { transition-delay: 0s; }
}

/* ==================== AUDIENCE ==================== */
.audience { background: var(--s3); padding: 48px 24px 52px; overflow: hidden; }
/* 유리에 비칠 컬러 블롭 */
.audience::before {
  content: ''; position: absolute; z-index: 0; pointer-events: none;
  top: 90px; left: -70px; width: 250px; height: 250px; border-radius: 50%;
  background: radial-gradient(circle, rgba(27,43,74,0.30), transparent 70%);
  filter: blur(26px);
}
.audience::after {
  content: ''; position: absolute; z-index: 0; pointer-events: none;
  bottom: 30px; right: -70px; width: 280px; height: 280px; border-radius: 50%;
  background: radial-gradient(circle, rgba(176,141,79,0.34), transparent 70%);
  filter: blur(26px);
}
.audience .reveal { position: relative; z-index: 1; }
.audience .section-label { color: var(--key); }
.audience .section-title em { color: var(--key); }
.audience-sub { font-size: 13.5px; color: var(--gray); margin-bottom: 28px; line-height: 1.55; }

.audience-list { display: flex; flex-direction: column; gap: 22px; list-style: none; padding-left: 0; margin-top: 18px; position: relative; z-index: 1; }
.audience-item {
  position: relative;
  width: 88%;
  padding: 22px 22px 20px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border: 1px solid rgba(255,255,255,0.9);
  box-shadow: 0 14px 34px rgba(27,43,74,0.14),
              inset 0 1px 0 rgba(255,255,255,0.9);
  opacity: 0;
  transition: transform 0.65s cubic-bezier(0.22,1,0.36,1),
              opacity 0.6s ease, box-shadow 0.3s ease;
}
/* 유리 상단 하이라이트 */
.audience-item::after {
  content: ''; position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.45), rgba(255,255,255,0) 32%);
  pointer-events: none; z-index: 0;
}
.audience-item > * { position: relative; z-index: 1; }
/* 지그재그 배치 + 말풍선 모서리 + 방향별 슬라이드인 */
.audience-item:nth-child(odd) {
  align-self: flex-start;
  transform: translateX(-44px);
  border-radius: 26px 26px 26px 8px;
}
.audience-item:nth-child(even) {
  align-self: flex-end;
  transform: translateX(44px);
  border-radius: 26px 26px 8px 26px;
}
.audience-item.visible { opacity: 1; transform: translateX(0); }
/* 스태거 등장 + 겹침 순서(뒤 카드가 위로) */
.audience-item:nth-child(1) { transition-delay: 0.05s; z-index: 1; }
.audience-item:nth-child(2) { transition-delay: 0.18s; z-index: 2; }
.audience-item:nth-child(3) { transition-delay: 0.31s; z-index: 3; }
.audience-item:nth-child(4) { transition-delay: 0.44s; z-index: 4; }
.audience-item:nth-child(5) { transition-delay: 0.57s; z-index: 5; }
.audience-item:nth-child(6) { transition-delay: 0.70s; z-index: 6; }
.audience-item:nth-child(7) { transition-delay: 0.83s; z-index: 7; }
.audience-item:nth-child(8) { transition-delay: 0.96s; z-index: 8; }

/* 모서리에 빼꼼 나오는 이모지 */
.audience-emoji {
  position: absolute; top: -20px;
  font-size: 40px; line-height: 1;
  filter: drop-shadow(0 5px 9px rgba(0,0,0,0.18));
  transform: rotate(-6deg);
}
.audience-item:nth-child(odd)  .audience-emoji { right: 18px; }
.audience-item:nth-child(even) .audience-emoji { left: 18px; transform: rotate(6deg); }

.audience-tag {
  font-size: 16px; font-weight: 800; color: var(--key);
  letter-spacing: -0.3px; margin-bottom: 8px;
}
.audience-tag span { color: var(--acc-deep); }
.audience-text {
  font-size: 13.5px; font-weight: 500; line-height: 1.6;
  letter-spacing: -0.2px; color: var(--gray); word-break: keep-all;
}
.audience-text strong { font-weight: 700; color: var(--key); }

.audience-item:hover { box-shadow: 0 18px 38px rgba(27,43,74,0.18); }

@media (prefers-reduced-motion: reduce) {
  .audience-item { transition: opacity 0.4s ease, box-shadow 0.3s ease; }
  .audience-item:nth-child(odd),
  .audience-item:nth-child(even) { transform: none; }
}


/* ==================== QUICK — 히어로 직후 연락 스트립 ==================== */
/* CONNECT(알약 CTA + 원형 아이콘)와 겹치지 않게 「선·타이포」로만 구성한다 */
.quick { background: var(--s3); padding: 30px 24px 26px; }

.quick-label {
  display: flex; align-items: center; gap: 7px;
  font-size: 10.5px; font-weight: 800; color: var(--acc-deep);
  letter-spacing: 2px; text-transform: uppercase;
}
.quick-live {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--key-mid); box-shadow: 0 0 0 0 rgba(49,80,127,0.55);
  animation: quickPulse 2.4s ease-out infinite;
}
@keyframes quickPulse {
  0%   { box-shadow: 0 0 0 0 rgba(49,80,127,0.5); }
  70%  { box-shadow: 0 0 0 7px rgba(49,80,127,0); }
  100% { box-shadow: 0 0 0 0 rgba(49,80,127,0); }
}

.quick-num {
  display: block; margin-top: 10px;
  font-size: 30px; font-weight: 900; color: var(--key-deep);
  letter-spacing: -0.5px; font-variant-numeric: tabular-nums;
  text-decoration: none; line-height: 1.1;
}
.quick-desc { margin-top: 9px; font-size: 12.5px; color: var(--gray); font-weight: 600; letter-spacing: -0.3px; }

.quick-acts {
  display: grid; grid-template-columns: 1fr 1fr;
  margin-top: 18px;
  border-top: 1px solid rgba(154,120,56,0.32);
  border-bottom: 1px solid rgba(154,120,56,0.32);
}
.quick-act {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 8px;
  text-decoration: none; color: var(--key-deep);
  font-size: 13.5px; font-weight: 800; letter-spacing: -0.3px;
  transition: color .18s ease;
}
.quick-act + .quick-act { border-left: 1px solid rgba(154,120,56,0.32); }
.quick-act svg { width: 17px; height: 17px; flex-shrink: 0; color: var(--acc-deep); transition: transform .18s ease; }
.quick-act:hover { color: var(--key); }
.quick-act:hover svg { transform: translateY(-1px); }
.quick-act:active { opacity: 0.7; }

/* ==================== 약력 단락 패널 ==================== */
.pf-panel { margin-top: 30px; padding: 20px 18px 22px; border-radius: 16px; }
.pf-panel > .pf-sub:first-child { margin-top: 0; }
.pf-panel .pf-more-btn { margin-top: 16px; }
.pf-panel-onair { background: var(--s1); }   /* 방송 출연 — 세이지 */
.pf-panel-award { background: var(--s1); }   /* 수상 — 크림 */
.pf-panel-cert  { background: var(--s2); }   /* 자격증 — 라이트 인크 */

/* ==================== PROFILE ==================== */
.profile { background: var(--s0); }
.profile .section-label { color: var(--acc-deep); }

/* 약력 통합 박스 (테두리 없음) */
.pf-card {
  position: relative;
  margin-top: 16px;
}
.pf-card > * { position: relative; z-index: 1; }

/* 인트로 — 누끼 인물 (배경 없음, 왼쪽 풀블리드) */
.pf-intro {
  position: relative; display: flex; align-items: flex-end; min-height: 290px;
  margin: 0 0 0 -24px; padding: 0 0 0 24px;
  overflow: hidden;
}
/* 골드 네모 — 인물 전체 덮는 직사각형 (곡선 없음) */
.pf-intro::before {
  content: ''; position: absolute; z-index: 0; pointer-events: none;
  top: -60px; bottom: -60px; left: 0; right: -40px;
  background: rgba(176,141,79,0.30);
}
.pf-intro-info { position: relative; z-index: 2; max-width: 58%; padding-bottom: 26px; }
.pf-name { font-size: 23px; font-weight: 800; color: var(--ink); letter-spacing: -0.5px; line-height: 1.2; }
.pf-name em { color: var(--key); font-style: normal; }
.pf-role { font-size: 11.5px; font-weight: 700; color: var(--acc-deep); margin-top: 5px; }
.pf-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 13px; }
.pf-chip { font-size: 10.5px; font-weight: 700; color: var(--key); background: rgba(255,255,255,0.82); padding: 5px 11px; border-radius: 100px; }
.pf-line { font-size: 12px; color: var(--gray); line-height: 1.55; margin-top: 13px; word-break: keep-all; }
.pf-photo { position: absolute; right: 12px; top: 16%; bottom: auto; height: 86%; z-index: 1; }
.pf-photo img {
  height: 100%; width: auto; max-width: 42vw; object-fit: contain; object-position: bottom; display: block;
  filter: drop-shadow(0 8px 14px rgba(27,43,74,0.18));
  -webkit-mask-image: linear-gradient(to bottom, #000 82%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 82%, transparent 100%);
}
.pf-philosophy { margin-top: 6px; }

/* 소제목 */
.pf-sub { font-size: 13px; font-weight: 800; color: var(--ink); letter-spacing: -0.2px; margin: 30px 0 16px; }
.pf-sub span { font-size: 10px; font-weight: 700; color: var(--acc-deep); letter-spacing: 1.5px; margin-left: 7px; }

/* 경력 타임라인 */
.pf-tl { list-style: none; margin: 0; padding: 0; position: relative; }
.pf-tl::before { content: ''; position: absolute; left: 6px; top: 6px; bottom: 16px; width: 2px; background: var(--line); }
.pf-step { position: relative; padding: 0 0 17px 26px; display: flex; gap: 9px; align-items: baseline; }
.pf-dot { position: absolute; left: 1px; top: 5px; width: 12px; height: 12px; border-radius: 50%; background: #fff; border: 2px solid var(--acc); }
.pf-step.now .pf-dot { background: var(--key); border-color: var(--key); box-shadow: 0 0 0 4px var(--key-light); }
.pf-when { flex-shrink: 0; font-size: 10px; font-weight: 800; color: var(--gray); }
.pf-step.now .pf-when { color: var(--key); }
.pf-txt { font-size: 13.5px; font-weight: 600; color: var(--ink); line-height: 1.5; letter-spacing: -0.3px; }
.pf-step.now .pf-txt { color: var(--key); font-weight: 800; }
/* 스크롤 시 하나씩 등장 */
.pf-step.reveal { transition: opacity 0.5s ease, transform 0.5s ease; }
.pf-step:nth-child(1) { transition-delay: 0.05s; }
.pf-step:nth-child(2) { transition-delay: 0.14s; }
.pf-step:nth-child(3) { transition-delay: 0.23s; }
.pf-step:nth-child(4) { transition-delay: 0.32s; }
.pf-step:nth-child(5) { transition-delay: 0.41s; }
.pf-step:nth-child(6) { transition-delay: 0.50s; }
.pf-step:nth-child(7) { transition-delay: 0.59s; }
.pf-step:nth-child(8) { transition-delay: 0.68s; }
.pf-step:nth-child(9) { transition-delay: 0.77s; }
.pf-step:nth-child(10) { transition-delay: 0.86s; }
.pf-step:nth-child(11) { transition-delay: 0.95s; }
.pf-step:nth-child(12) { transition-delay: 1.04s; }

/* 자격증 — 발급처별 그룹 (C2안) */
.cg-wrap { display: flex; flex-direction: column; gap: 14px; }
.cg-group { background: var(--white); border-radius: 14px; padding: 14px 16px 6px; box-shadow: 0 6px 18px rgba(27,43,74,0.07); }
.cg-head { display: flex; align-items: center; gap: 8px; padding-bottom: 9px; border-bottom: 1px solid var(--line); }
.cg-org { font-size: 12px; font-weight: 800; color: var(--key); letter-spacing: -0.3px; word-break: keep-all; }
.cg-num {
  flex-shrink: 0; margin-left: auto;
  min-width: 20px; height: 20px; padding: 0 6px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 100px; background: var(--key-light);
  font-size: 10.5px; font-weight: 800; color: var(--key);
  font-variant-numeric: tabular-nums;
}
.cg-rows { list-style: none; margin: 0; padding: 0; }
.cg-row {
  position: relative;
  padding: 9px 0 9px 13px;
  border-bottom: 1px solid rgba(221,216,196,0.55);
  font-size: 12px; font-weight: 600; color: var(--ink);
  letter-spacing: -0.3px; line-height: 1.4; word-break: keep-all;
}
.cg-row::before {
  content: ''; position: absolute; left: 1px; top: 15px;
  width: 4px; height: 4px; border-radius: 50%; background: var(--acc);
}
.cg-rows .cg-row:last-child { border-bottom: 0; }

/* 대표 자격증 — 인라인 4줄 */
.cg-lead { background: var(--white); border-radius: 14px; padding: 4px 16px; box-shadow: 0 6px 18px rgba(27,43,74,0.07); }
.cg-lead-row { display: flex; align-items: baseline; gap: 10px; }
.cg-lead-row b { flex: 1 1 auto; min-width: 0; font-weight: 700; }
.cg-lead-row i {
  flex-shrink: 0; font-style: normal;
  font-size: 10px; font-weight: 700; color: var(--acc-deep);
  letter-spacing: -0.2px; word-break: keep-all;
}
.cg-lead + .pf-more-btn { margin-top: 14px; }

.cmodal-body .cg-wrap { margin-top: 4px; }
.cmodal-body .cg-group { background: var(--s1); box-shadow: none; border: 1px solid var(--line); }




/* ==================== INQUIRY — 문의 폼 ==================== */
/* AUDIENCE(--s3) 와 CONTACT(--key-deep) 사이라 --s1 로 한 단계 밝힌다 */
.inquiry { background: var(--s1); padding: 48px 24px 52px; }
.iq-lede { margin-top: 14px; font-size: 13px; color: var(--gray); font-weight: 600; line-height: 1.7; letter-spacing: -0.3px; }

.iq-form { margin-top: 24px; }

/* 문의 종류 — 2분할 세그먼트 */
.iq-kind { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 18px; }
.iq-kind-opt { position: relative; }
.iq-kind-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.iq-kind-opt span {
  display: block; text-align: center; cursor: pointer;
  padding: 12px 8px; border-radius: 10px;
  background: var(--white); color: var(--gray);
  font-size: 12.5px; font-weight: 700; letter-spacing: -0.3px;
  box-shadow: 0 3px 10px rgba(27,43,74,0.06);
  transition: background .16s ease, color .16s ease, box-shadow .16s ease;
}
.iq-kind-opt input:checked + span {
  background: var(--key); color: var(--white);
  box-shadow: 0 6px 16px rgba(27,43,74,0.22);
}
.iq-kind-opt input:focus-visible + span { box-shadow: 0 0 0 3px rgba(49,80,127,0.35); }

/* 허니팟 — 화면에도 스크린리더에도 안 보이게. display:none 은 일부 봇이 걸러내서 피한다 */
.iq-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.iq-field { margin-bottom: 14px; }
.iq-field label {
  display: block; margin-bottom: 7px;
  font-size: 11.5px; font-weight: 800; color: var(--ink); letter-spacing: -0.2px;
}
.iq-field label b { color: var(--acc-deep); font-weight: 800; }
.iq-opt { font-size: 10px; font-weight: 700; color: var(--gray); margin-left: 3px; }
.iq-field input, .iq-field textarea {
  width: 100%; display: block;
  padding: 13px 14px; border: 1px solid var(--line); border-radius: 10px;
  background: var(--white); color: var(--ink);
  font-family: inherit; font-size: 14px; font-weight: 600; letter-spacing: -0.3px;
  line-height: 1.55; -webkit-appearance: none; appearance: none;
  transition: border-color .16s ease, box-shadow .16s ease;
}
.iq-field textarea { resize: vertical; min-height: 104px; }
.iq-field input::placeholder, .iq-field textarea::placeholder { color: #A9A99E; font-weight: 500; }
.iq-field input:focus, .iq-field textarea:focus {
  outline: none; border-color: var(--key-mid); box-shadow: 0 0 0 3px rgba(49,80,127,0.14);
}
.iq-field.err input, .iq-field.err textarea { border-color: #C0392B; box-shadow: 0 0 0 3px rgba(192,57,43,0.12); }

.iq-agree { display: flex; gap: 9px; align-items: flex-start; margin-top: 16px; cursor: pointer; }
.iq-agree input { flex-shrink: 0; width: 17px; height: 17px; margin: 2px 0 0; accent-color: var(--key); }
.iq-agree span { font-size: 11.5px; color: var(--gray); line-height: 1.6; font-weight: 500; letter-spacing: -0.3px; }
.iq-agree span b { color: var(--ink); font-weight: 700; }
.iq-agree.err span { color: #C0392B; }

.iq-error {
  margin-top: 14px; padding: 11px 13px; border-radius: 9px;
  background: rgba(192,57,43,0.08); color: #A5301F;
  font-size: 12px; font-weight: 700; letter-spacing: -0.3px; line-height: 1.55;
}
.iq-error[hidden] { display: none; }

.iq-submit {
  width: 100%; margin-top: 18px; padding: 16px; border: 0; border-radius: 12px; cursor: pointer;
  background: var(--key); color: var(--white);
  font-family: inherit; font-size: 15px; font-weight: 800; letter-spacing: -0.3px;
  box-shadow: 0 8px 20px rgba(27,43,74,0.22);
  transition: transform .15s ease, box-shadow .2s ease, opacity .2s ease;
}
.iq-submit:hover { transform: translateY(-1px); box-shadow: 0 11px 24px rgba(27,43,74,0.28); }
.iq-submit:active { transform: translateY(0); }
.iq-submit[disabled] { opacity: .55; cursor: default; transform: none; box-shadow: none; }

.iq-alt { margin-top: 12px; text-align: center; font-size: 11.5px; color: var(--gray); font-weight: 600; }
.iq-alt a { color: var(--key); font-weight: 800; text-decoration: none; }

/* ==================== 문의 완료 팝업 ==================== */
.cmodal-sent .cmodal-panel { max-width: 380px; }
.cmodal-sent .cmodal-body { padding: 34px 26px calc(env(safe-area-inset-bottom, 0px) + 26px); text-align: center; }
.sent-ic {
  width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--key-light); color: var(--key);
  display: flex; align-items: center; justify-content: center;
  animation: sentPop .42s cubic-bezier(.2,.8,.3,1.3) both;
}
.sent-ic svg { width: 27px; height: 27px; }
@keyframes sentPop { from { opacity: 0; transform: scale(.6); } to { opacity: 1; transform: none; } }
.sent-t { font-size: 19px; font-weight: 900; color: var(--ink); letter-spacing: -0.6px; }
.sent-s { margin-top: 11px; font-size: 13px; color: var(--gray); line-height: 1.7; font-weight: 600; letter-spacing: -0.3px; }
.sent-s b { color: var(--ink); font-weight: 800; }
.sent-call {
  margin-top: 18px; padding: 13px; border-radius: 11px; background: var(--s2);
}
.sent-call span { display: block; font-size: 10.5px; font-weight: 700; color: var(--gray); letter-spacing: -0.2px; }
.sent-call a {
  display: block; margin-top: 4px; font-size: 17px; font-weight: 900; color: var(--key);
  text-decoration: none; letter-spacing: -0.5px; font-variant-numeric: tabular-nums;
}
.sent-x {
  width: 100%; margin-top: 16px; padding: 14px; border: 0; border-radius: 11px; cursor: pointer;
  background: var(--key); color: var(--white);
  font-family: inherit; font-size: 14px; font-weight: 800; letter-spacing: -0.3px;
}
.sent-x:active { opacity: .8; }

/* ==================== CONTACT ==================== */
.contact { background: var(--key-deep); color: var(--white); padding: 36px 24px calc(env(safe-area-inset-bottom, 0px) + 40px); }
.contact .section-label { color: var(--acc-light); }
.contact .section-title { color: var(--white); }

.contact-list { margin-top: 20px; display: flex; flex-direction: column; }
.contact-item { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.10); text-decoration: none; color: var(--white); }
.contact-item:last-child { border-bottom: none; }
.contact-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--acc-light); }
.contact-icon svg { width: 18px; height: 18px; }
.contact-label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.50); margin-bottom: 2px; letter-spacing: 0.3px; }
.contact-value { font-size: 14px; font-weight: 600; color: var(--white); letter-spacing: -0.2px; line-height: 1.4; }

.contact-footer { margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.10); text-align: center; }
.contact-footer-logo { font-family: 'Pretendard Variable', Pretendard, -apple-system, BlinkMacSystemFont, sans-serif; font-size: 21px; font-weight: 800; letter-spacing: 2px; color: rgba(255,255,255,0.88); margin-bottom: 6px; }
.contact-footer-sub { font-size: 9px; font-weight: 600; letter-spacing: 2.5px; color: rgba(255,255,255,0.35); text-transform: uppercase; margin-bottom: 16px; }
.contact-footer-copy { font-size: 11px; color: rgba(255,255,255,0.28); letter-spacing: -0.2px; }


/* ==================== 경력 전체 보기 버튼 ==================== */
.pf-more-btn {
  margin: 4px auto 0; display: flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border: 0; border-radius: 999px; cursor: pointer;
  background: var(--key); color: var(--paper);
  font-family: inherit; font-size: 13px; font-weight: 700; letter-spacing: -0.2px;
  box-shadow: 0 6px 16px rgba(27,43,74,0.18);
  transition: transform .18s ease, box-shadow .18s ease;
}
.pf-more-btn svg { width: 16px; height: 16px; transition: transform .18s ease; }
.pf-more-btn:hover { transform: translateY(-1px); box-shadow: 0 9px 20px rgba(27,43,74,0.24); }
.pf-more-btn:hover svg { transform: translateX(3px); }
.pf-more-btn:active { transform: translateY(0); }

/* ==================== 전체 경력 팝업 ==================== */
.cmodal { position: fixed; inset: 0; z-index: 200; display: flex; align-items: flex-end; justify-content: center; }
.cmodal[hidden] { display: none; }
.cmodal-back { position: absolute; inset: 0; background: rgba(20,28,22,0.55); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); animation: cmFade .22s ease both; }
.cmodal-panel {
  position: relative; width: 100%; max-width: 480px;
  max-height: calc(100dvh - 40px);
  display: flex; flex-direction: column;
  background: var(--white);
  border-radius: 22px 22px 0 0;
  box-shadow: 0 -12px 40px rgba(0,0,0,0.28);
  animation: cmUp .28s cubic-bezier(.22,.9,.3,1) both;
  overflow: hidden;
}
@keyframes cmFade { from { opacity: 0 } to { opacity: 1 } }
@keyframes cmUp { from { transform: translateY(26px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }

.cmodal-head {
  flex-shrink: 0; display: flex; align-items: flex-start; justify-content: space-between; gap: 12px;
  padding: 22px 24px 16px; border-bottom: 1px solid var(--line); background: var(--white);
}
.cmodal-t { font-size: 17px; font-weight: 800; color: var(--ink); letter-spacing: -0.5px; }
.cmodal-s { margin-top: 4px; font-size: 12px; font-weight: 600; color: var(--gray); letter-spacing: -0.2px; }
.cmodal-x {
  flex-shrink: 0; width: 34px; height: 34px; border: 0; border-radius: 50%; cursor: pointer;
  background: var(--key-light); color: var(--key);
  display: flex; align-items: center; justify-content: center; transition: background .16s ease;
}
.cmodal-x svg { width: 17px; height: 17px; }
.cmodal-x:hover { background: var(--s2); }

.cmodal-body { overflow-y: auto; -webkit-overflow-scrolling: touch; overscroll-behavior: contain; padding: 4px 24px calc(env(safe-area-inset-bottom, 0px) + 26px); }
.cmodal-body .pf-tl::before { bottom: 20px; }
.cmodal-body .pf-step { padding-bottom: 20px; }
.cmodal-body .pf-when { min-width: 26px; }

.pf-yr { display: block; margin-top: 4px; font-style: normal; font-size: 11.5px; font-weight: 600; color: var(--gray); letter-spacing: -0.1px; line-height: 1.5; }
.pf-step.now .pf-yr { color: var(--key-mid); }

body.cmodal-open { overflow: hidden; }

@media (min-width: 600px) {
  .cmodal { align-items: center; }
  .cmodal-panel { border-radius: 20px; max-height: min(760px, calc(100dvh - 80px)); }
}
.cmodal-x:focus { outline: none; }
.cmodal-x:focus-visible { box-shadow: 0 0 0 3px rgba(27,43,74,0.28); }

/* 영상 팝업 — 16:9 유튜브 임베드 */
.cmodal-video .cmodal-body { padding-top: 8px; }
.vframe { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden; background: #000; }
.vframe iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.vframe-out {
  display: block; margin-top: 12px; text-align: center;
  font-size: 12px; font-weight: 700; color: var(--gray);
  text-decoration: none; letter-spacing: -0.2px;
}
.vframe-out:hover { color: var(--key); }


/* ==================== PROFILE 상단 (2026-08-24 · M2안) ==================== */
.pf-top { display: flex; gap: 16px; align-items: stretch; margin-top: 20px; }
.pf-avatar {
  flex-shrink: 0; width: 150px; min-height: 178px;
  border-radius: 14px; overflow: hidden; background: var(--s2);
  box-shadow: 0 8px 20px rgba(27,43,74,0.14);
}
.pf-avatar img { width: 100%; height: 100%; object-fit: cover; object-position: center 12%; display: block; }
.pf-meta { flex: 1; min-width: 0; display: flex; flex-direction: column; justify-content: center; }
.pf-yrs { margin-top: 12px; font-size: 11px; font-weight: 800; color: var(--acc-deep); letter-spacing: 0.2px; }

.pf-rule { height: 1px; background: var(--line); margin: 20px 0 18px; }

/* 하는 일 3열 */
.pf-do { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pf-do.pf-do-4 { grid-template-columns: repeat(2, 1fr); gap: 14px 10px; }
.pf-do-item { text-align: center; min-width: 0; }
.pf-do-ic {
  width: 48px; height: 48px; margin: 0 auto 9px; border-radius: 50%;
  background: var(--key-light); color: var(--key);
  display: flex; align-items: center; justify-content: center;
}
.pf-do-ic svg { width: 21px; height: 21px; }
.pf-do-item b { display: block; font-size: 12px; font-weight: 800; color: var(--ink); letter-spacing: -0.3px; }
.pf-do-item span { display: block; margin-top: 3px; font-size: 10.5px; color: var(--gray); font-weight: 600; }

/* 방송 출연 — EBS 강좌 링크 카드 */
.ebs-list { display: flex; flex-direction: column; gap: 9px; }
.ebs {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: var(--white); border-radius: 13px;
  box-shadow: 0 6px 18px rgba(27,43,74,0.08);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.ebs:active { transform: scale(0.985); box-shadow: 0 3px 10px rgba(27,43,74,0.10); }
.ebs-thumb {
  flex-shrink: 0; width: 38px; height: 27px; border-radius: 7px;
  background: var(--key); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
}
.ebs-thumb svg { width: 15px; height: 15px; display: block; }
.ebs-tx { min-width: 0; }
.ebs-tx b { display: block; font-size: 12.5px; font-weight: 800; color: var(--ink); letter-spacing: -0.3px; line-height: 1.35; word-break: keep-all; }
.ebs-tx em { display: block; margin-top: 3px; font-style: normal; font-size: 10.5px; font-weight: 700; color: var(--acc-deep); letter-spacing: 0.2px; }


/* 인용구 — 상단 골드 룰 */
.pf-quote {
  margin: 26px 0 6px; padding: 20px 0 0;
  background: transparent; border: none; box-shadow: none;
  border-radius: 0;
  border-top: 2px solid var(--acc);
}
.pf-quote .about-quote-text { padding-left: 0; }

@media (max-width: 359px) {
  .pf-avatar { width: 118px; min-height: 150px; }
  .pf-top { gap: 13px; }
  .pf-do { gap: 6px; }
  .pf-do-ic { width: 42px; height: 42px; }
  .pf-do-item b { font-size: 11px; }
  .pf-do-item span { font-size: 9.5px; }
}

/* ==================== 저서 (2026-08-24 · 아이콘 2열 + 연도 + 선화 배경) ==================== */
/* 배경 그래픽 — 대표님이 주신 선화에서 상단 책만 떼어낸 투명 PNG */
.bk-wrap {
  position: relative; overflow: hidden;
  margin-top: 30px; padding: 22px 18px;
  border-radius: 16px; background: var(--s2);
}
.bk-wrap .pf-sub { margin: 0 0 14px; position: relative; z-index: 2; }
.bk-art {
  position: absolute; z-index: 1; pointer-events: none;
  width: 200px; right: -42px; top: -46px; opacity: 0.28;
}
.bk-art img { display: block; width: 100%; height: auto; }
.bk-note {
  position: relative; z-index: 2; margin-top: 12px;
  font-size: 12px; color: var(--gray); line-height: 1.55; word-break: keep-all;
}
.bk-note-sweep {
  text-align: center;
  margin-top: 16px;
  font-weight: 700; letter-spacing: 0.2px;
  background-image: linear-gradient(100deg,
    var(--gray) 0%, var(--gray) 40%,
    var(--acc-deep) 47%, #EFDCB4 50%, var(--acc-deep) 53%,
    var(--gray) 60%, var(--gray) 100%);
  background-size: 240% 100%;
  background-position: 120% 0;
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  animation: bkSweep 4.2s linear 1.2s infinite;
}
@keyframes bkSweep {
  /* 3.2초에 걸쳐 천천히 훑고, 1초 쉬었다가 다시 (총 4.2초).
     120%→-20% 로 잡으면 이동 구간의 절반을 글자 바깥에서 흘려보내 실제로는 순식간에
     지나가 보인다. 92%→8% 가 골드 밴드가 글자 위에 머무는 구간이다.
     타이밍 함수는 반드시 linear — ease-in-out 을 쓰면 가운데 구간이 빨라져
     글자를 훑는 시간이 3.2초가 아니라 1.7초로 줄어든다. */
  0%            { background-position: 92% 0; }
  76.2%, 100%   { background-position: 8% 0; }
}

.bk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; position: relative; z-index: 2; }
.bk-grid .bk-item:last-child:nth-child(odd) { grid-column: 1 / -1; }
.bk-item {
  display: flex; gap: 9px; align-items: flex-start; min-width: 0;
  background: rgba(255,255,255,0.9); border-radius: 10px; padding: 11px 12px;
}
.bk-ic { flex-shrink: 0; color: var(--key); margin-top: 1px; }
.bk-ic svg { width: 15px; height: 15px; display: block; }
.bk-txt { min-width: 0; }
.bk-txt b {
  display: block; font-size: 11.5px; font-weight: 700; color: var(--ink);
  line-height: 1.45; letter-spacing: -0.3px;
}
.bk-txt em {
  display: block; margin-top: 4px; font-style: normal;
  font-size: 10px; font-weight: 800; color: var(--acc-deep); letter-spacing: 0.3px;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 359px) {
  .bk-grid { grid-template-columns: 1fr; }
  .bk-art { width: 150px; right: -34px; top: -36px; }
  .bk-wrap { padding: 20px 14px; }
}

/* ==================== 수상 (2026-08-24 · T4안 월계관 헤더 + 연도 목록) ==================== */
.aw-head {
  position: relative; display: flex; align-items: center; justify-content: center;
  height: 86px; margin-bottom: 10px;
}
.aw-wreath {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  height: 100%; width: auto; display: block; pointer-events: none; z-index: 1;
}
.aw-count { position: relative; z-index: 2; text-align: center; }
.aw-count i {
  display: block; font-style: normal;
  font-size: 10.5px; font-weight: 700; color: var(--acc-deep); letter-spacing: 0.3px;
}
.aw-count b {
  display: block; margin-top: 2px;
  font-size: 24px; font-weight: 900; color: var(--key); letter-spacing: -1px; line-height: 1;
}

.aw-row {
  display: flex; gap: 12px; align-items: center;
  padding: 9px 0; border-bottom: 1px solid var(--line);
}
.aw-row:last-child { border-bottom: 0; }
.aw-year {
  flex-shrink: 0; width: 44px;
  font-size: 17px; font-weight: 900; color: var(--key);
  letter-spacing: -0.8px; font-variant-numeric: tabular-nums;
}
.aw-ic { flex-shrink: 0; width: 18px; color: var(--acc-deep); }
.aw-ic svg { width: 18px; height: 18px; display: block; }
.aw-tx { min-width: 0; }
.aw-tx b { display: block; font-size: 12.5px; font-weight: 700; color: var(--ink); letter-spacing: -0.3px; }
.aw-tx em {
  display: block; margin-top: 2px; font-style: normal;
  font-size: 10.5px; color: var(--gray); font-weight: 600;
}

@media (max-width: 359px) {
  .aw-head { height: 74px; }
  .aw-count b { font-size: 21px; }
  .aw-row { gap: 9px; }
  .aw-year { width: 38px; font-size: 15px; }
}
