/* ===================================================
   style.css  –  김종진 AI 강사 이력서  (플레이풀 리디자인)
   =================================================== */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans KR', sans-serif;
  background: #f5f3ee;
  color: #1a1a1a;
  line-height: 1.7;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Variables ── */
:root {
  --cream:    #f5f3ee;
  --black:    #1a1a1a;
  --gray:     #666;
  --lgray:    #999;

  --purple:   #c4b5fd;   /* 라벤더 */
  --purple-d: #7c3aed;
  --green:    #86efac;   /* 민트그린 */
  --green-d:  #16a34a;
  --yellow:   #fde68a;   /* 레몬 */
  --yellow-d: #d97706;
  --pink:     #fda4af;   /* 소프트핑크 */
  --pink-d:   #e11d48;
  --mint:     #6ee7b7;   /* 에메랄드 */
  --mint-d:   #059669;
  --orange:   #fed7aa;   /* 피치오렌지 */
  --orange-d: #ea580c;

  --radius-pill: 100px;
  --radius-lg:   20px;
  --radius-md:   14px;
  --radius-sm:   10px;

  --shadow-card: 0 2px 16px rgba(0,0,0,0.07);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.12);
}

/* ── Container ── */
.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Reveal 애니메이션 ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════
   SECTION TAG (캡슐형 헤더)
══════════════════════════════════════ */
.section-tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 24px;
  border: 2.5px solid var(--black);
}
.section-tag--purple { background: var(--purple); }
.section-tag--green  { background: var(--green); }
.section-tag--yellow { background: var(--yellow); }
.section-tag--pink   { background: var(--pink); }
.section-tag--mint   { background: var(--mint); }
.section-tag--orange { background: var(--orange); }

/* ══════════════════════════════════════
   PAGE TITLE BAR  –  리디자인
══════════════════════════════════════ */
.page-title-bar {
  position: relative;
  background: var(--cream);
  color: var(--black);
  text-align: center;
  padding: 64px 24px 56px;
  overflow: hidden;
  border-bottom: 2.5px solid var(--black);
}

/* ── 배경 레이어들 ── */

/* 큰 컬러 blob */
.ptb-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(72px);
}
.ptb-blob--1 {
  width: 480px; height: 480px;
  background: var(--purple);
  opacity: 0.38;
  top: -160px; left: -100px;
}
.ptb-blob--2 {
  width: 360px; height: 360px;
  background: var(--mint);
  opacity: 0.32;
  bottom: -140px; right: -80px;
}
.ptb-blob--3 {
  width: 260px; height: 260px;
  background: var(--yellow);
  opacity: 0.28;
  top: 20px; right: 22%;
}
.ptb-blob--4 {
  width: 200px; height: 200px;
  background: var(--pink);
  opacity: 0.25;
  bottom: 0; left: 28%;
}

/* 격자 텍스처 */
.ptb-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(0,0,0,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.055) 1px, transparent 1px);
  background-size: 36px 36px;
}

/* 장식 별 */
.ptb-deco {
  position: absolute;
  font-size: 2.6rem;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  color: var(--black);
  opacity: 0.13;
  animation: ptb-spin 10s linear infinite;
}
.ptb-deco--l { top: 24px;  left:  40px;  animation-duration: 14s; }
.ptb-deco--r { bottom: 20px; right: 44px; animation-direction: reverse; animation-duration: 11s; }
@keyframes ptb-spin { to { transform: rotate(360deg); } }

/* ── 콘텐츠 ── */
.ptb-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 소제목 라벨 */
.ptb-sub {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--black);
  opacity: 0.6;
  margin-bottom: 18px;
}
.ptb-sub::before,
.ptb-sub::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--black);
  opacity: 0.35;
  border-radius: 2px;
}

/* 이름 */
.ptb-name {
  font-size: clamp(3rem, 7vw, 5.2rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 20px;
  /* 텍스트에 미세한 입체감 */
  text-shadow:
    3px 3px 0 rgba(196,181,253,0.55),
    6px 6px 0 rgba(196,181,253,0.2);
}

/* 직함 */
.ptb-desc {
  font-size: clamp(0.76rem, 1.6vw, 0.92rem);
  color: var(--black);
  opacity: 0.55;
  font-weight: 500;
  margin-bottom: 32px;
  line-height: 1.9;
}

/* 뱃지 행 */
.ptb-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.page-title-bar .pill {
  border-color: var(--black);
  transition: transform 0.2s, box-shadow 0.2s;
}
.page-title-bar .pill:hover {
  transform: translateY(-3px) rotate(-1.5deg);
  box-shadow: 3px 3px 0 var(--black);
}

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  position: relative;
  padding: 56px 0 72px;
  background: var(--cream);
  overflow: hidden;
}

/* 배경 blob */
.blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  opacity: 0.45;
}
.blob-1 {
  width: 420px; height: 420px;
  background: var(--purple);
  top: -120px; left: -100px;
}
.blob-2 {
  width: 300px; height: 300px;
  background: var(--mint);
  bottom: -80px; right: -60px;
}
.blob-3 {
  width: 220px; height: 220px;
  background: var(--yellow);
  top: 40%; left: 45%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 52px;
  align-items: start;
}

/* ── 사진 아치 ── */
.hero-photo-col { position: relative; }

.photo-arch {
  position: relative;
  width: 260px;
  height: 300px;
  margin: 0 auto;
}

.photo-arch-bg {
  position: absolute;
  inset: 0;
  background: var(--pink);
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  border: 3px solid var(--black);
}

.photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 8%;
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
}

.deco-star {
  position: absolute;
  font-size: 1.3rem;
  color: var(--green-d);
  animation: spin-star 6s linear infinite;
  line-height: 1;
}
.deco-star--tl { top: -14px; left: -14px; animation-direction: normal; }
.deco-star--tr { top: 20px; right: -18px; animation-delay: -2s; font-size: 1rem; }
.deco-star--br { bottom: 20px; right: -22px; animation-delay: -4s; font-size: 0.85rem; }
@keyframes spin-star { to { transform: rotate(360deg); } }

/* ── 오른쪽 텍스트 ── */
.hero-text-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* hero 카드 (강사소개 / 기본정보를 감싸는 컨테이너) */
.hero-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 2.5px solid var(--black);
  padding: 24px 26px;
  box-shadow: 4px 4px 0 var(--black);
  transition: transform 0.22s, box-shadow 0.22s;
}
.hero-card:hover {
  transform: translateY(-3px);
  box-shadow: 6px 6px 0 var(--black);
}



.hero-intro {
  font-size: 0.93rem;
  color: #333;
  line-height: 1.85;
  margin: 0;
}
.hero-intro strong { color: var(--black); font-weight: 700; }
.name-highlight {
  color: var(--purple-d);
  font-weight: 900;
}

/* 연락처 */
.hero-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.88rem;
  color: #333;
  transition: color 0.2s;
  text-decoration: none;
}
.contact-row > div {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.contact-row:hover { color: var(--purple-d); }
.contact-row:hover .contact-val { text-decoration: underline; }

.contact-icon {
  width: 32px; height: 32px;
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
  border: 2px solid var(--black);
}
.contact-icon--web   { background: var(--purple); }
.contact-icon--phone { background: var(--green);  }
.contact-icon--mail  { background: var(--pink);   }
.contact-icon--mail2 { background: var(--orange); }
.contact-icon--loc   { background: var(--yellow); }

.contact-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--lgray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 2px;
  white-space: nowrap;
}
.contact-val {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
  line-height: 1.3;
}

/* 배지 행 — hero-card 아래 배치 */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 22px;
  background: white;
  border-radius: var(--radius-lg);
  border: 2.5px solid var(--black);
  box-shadow: 4px 4px 0 var(--black);
}
.pill {
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  border: 2px solid var(--black);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
}
.pill:hover { transform: translateY(-2px); box-shadow: 3px 3px 0 var(--black); }
.pill--purple { background: var(--purple); }
.pill--green  { background: var(--green); }
.pill--yellow { background: var(--yellow); }
.pill--pink   { background: var(--pink); }
.pill--mint   { background: var(--mint); }

/* ══════════════════════════════════════
   MAIN CONTENT (2컬럼 그리드)
══════════════════════════════════════ */
.main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 56px;
  padding-top: 56px;
  padding-bottom: 72px;
}

.resume-section {
  margin-bottom: 52px;
}

/* ── 학력 ── */
.edu-list { display: flex; flex-direction: column; gap: 20px; }
.edu-item {}
.edu-year {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--orange-d);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}
.edu-title {
  font-size: 0.97rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1.4;
}
.edu-sub {
  font-size: 0.85rem;
  color: var(--gray);
}

/* ── 경력 ── */
.exp-list { display: flex; flex-direction: column; gap: 16px; }
.exp-item {
  padding: 14px 18px;
  background: white;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: var(--shadow-card);
}
.exp-item:hover {
  border-color: var(--green);
  box-shadow: 4px 4px 0 var(--green);
  transform: translateY(-2px);
}
.exp-year {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-d);
  display: block;
  margin-bottom: 3px;
}
.exp-title {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
}

/* ── 저서 ── */
.book-list { display: flex; flex-direction: column; gap: 14px; }
.book-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: white;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  box-shadow: var(--shadow-card);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.book-item:hover {
  border-color: var(--yellow);
  box-shadow: 4px 4px 0 var(--yellow);
  transform: translateY(-2px);
}
.book-icon { font-size: 1.8rem; line-height: 1; flex-shrink: 0; }
.book-cover {
  width: 80px;
  height: 110px;
  object-fit: cover;
  border-radius: 6px;
  border: 1.5px solid #ddd;
  box-shadow: 3px 3px 8px rgba(0,0,0,0.15);
  flex-shrink: 0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.book-cover:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 5px 8px 16px rgba(0,0,0,0.2);
}
.book-title { font-size: 0.88rem; font-weight: 700; color: var(--black); line-height: 1.5; margin-bottom: 6px; }
.book-type {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  background: var(--yellow);
  border: 1.5px solid var(--black);
  color: var(--black);
}

/* ── 스킬 태그 ── */
.skills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.skill-tag {
  padding: 7px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--black);
  border: 2px solid var(--black);
  background: white;
  transition: background 0.2s, transform 0.18s, box-shadow 0.18s;
  cursor: default;
}
.skill-tag:hover {
  background: var(--pink);
  transform: translateY(-2px);
  box-shadow: 2px 2px 0 var(--black);
}

/* ── 강의 대상 카드 ── */
.target-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.target-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px 12px;
  background: white;
  border-radius: var(--radius-lg);
  border: 2px solid var(--black);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: default;
}
.target-card:hover {
  background: var(--mint);
  transform: translateY(-3px);
  box-shadow: 4px 4px 0 var(--black);
}
.target-emoji { font-size: 1.6rem; line-height: 1; }

/* ── 강의 이력 타임라인 ── */
.lt-category {
  font-size: 0.85rem;
  font-weight: 900;
  color: white;
  background: var(--black);
  display: block;
  width: fit-content;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  margin: 16px 0 8px;
  clear: both;
}
.lt-category:first-of-type { margin-top: 4px; }
.lecture-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 22px;
}
.lecture-timeline::before {
  content: '';
  position: absolute;
  left: 6px; top: 8px; bottom: 8px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--black) 0, var(--black) 6px,
    transparent 6px, transparent 12px
  );
}
.lt-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
}
.lt-item:last-child { border-bottom: none; }

.lt-dot {
  position: absolute;
  left: -18px;
  top: 18px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--orange);
  border: 2.5px solid var(--black);
  flex-shrink: 0;
}
.lt-body {}
.lt-org {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--black);
  line-height: 1.4;
}
.lt-desc {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 2px;
}

/* ══════════════════════════════════════
   강의 프로그램
══════════════════════════════════════ */
.program-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.program-item {
  background: white;
  border: 2px solid var(--black);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 3px 3px 0 var(--black);
  transition: transform 0.2s, box-shadow 0.2s;
}
.program-item:hover {
  transform: translateY(-3px);
  box-shadow: 5px 5px 0 var(--black);
}
.program-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--cream);
  border-bottom: 2px solid var(--black);
}
.program-emoji {
  font-size: 1.4rem;
}
.program-label {
  font-size: 1rem;
  font-weight: 900;
  color: var(--black);
}
.program-poster-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.program-poster-grid .program-poster {
  border-right: 1.5px solid var(--black);
}
.program-poster-grid .program-poster:last-child {
  border-right: none;
}
.program-poster {
  width: 100%;
  display: block;
  object-fit: contain;
}

@media (max-width: 560px) {
  .program-poster-grid {
    grid-template-columns: 1fr;
  }
  .program-poster-grid .program-poster {
    border-right: none;
    border-bottom: 1.5px solid var(--black);
  }
  .program-poster-grid .program-poster:last-child {
    border-bottom: none;
  }
}

/* ══════════════════════════════════════
   GALLERY
══════════════════════════════════════ */
.gallery-section {
  padding: 0 0 72px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-card {
  background: white;
  border-radius: var(--radius-lg);
  border: 2.5px solid var(--black);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.gallery-card:nth-child(1) { transition-delay: 0s; }
.gallery-card:nth-child(2) { transition-delay: 0.08s; }
.gallery-card:nth-child(3) { transition-delay: 0.16s; }
.gallery-card:nth-child(4) { transition-delay: 0.24s; }
.gallery-card:hover {
  transform: translateY(-6px) rotate(-1deg);
  box-shadow: 6px 6px 0 var(--black);
}

.gallery-img-wrap {
  position: relative;
  width: 100%;
  padding-top: 72%;
  overflow: hidden;
  background: var(--purple);
}
.gallery-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-card:hover .gallery-img { transform: scale(1.05); }

.g-crop1 { object-position: 50% 30%; }
.g-crop2 { object-position: 50% 40%; }
.g-crop3 { object-position: 50% 35%; }
.g-crop4 { object-position: 60% 20%; }

.gallery-univ {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--black);
  padding: 12px 14px 2px;
}
.gallery-desc {
  font-size: 0.75rem;
  color: var(--gray);
  padding: 0 14px 14px;
}

/* ══════════════════════════════════════
   CTA
══════════════════════════════════════ */
.cta-section {
  position: relative;
  background: var(--black);
  padding: 80px 24px;
  text-align: center;
  overflow: hidden;
}

.cta-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.25;
}
.cta-blob-1 { width: 400px; height: 400px; background: var(--purple); top: -120px; left: -80px; }
.cta-blob-2 { width: 320px; height: 320px; background: var(--mint);   bottom: -100px; right: -60px; }

.cta-inner { position: relative; z-index: 1; }

.cta-eyebrow {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--yellow);
  margin-bottom: 16px;
}
.cta-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  color: white;
  line-height: 1.4;
  margin-bottom: 40px;
}
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-btn:hover { transform: translateY(-3px); }
.cta-btn--solid {
  background: var(--yellow);
  color: var(--black);
  border: 2.5px solid var(--black);
}
.cta-btn--solid:hover { box-shadow: 4px 4px 0 var(--yellow); }
.cta-btn--outline {
  background: transparent;
  color: white;
  border: 2.5px solid rgba(255,255,255,0.5);
}
.cta-btn--outline:hover { border-color: white; background: rgba(255,255,255,0.08); }
.cta-btn--download {
  background: var(--yellow) !important;
  color: var(--black) !important;
  border: 2.5px solid var(--black) !important;
  text-decoration: none !important;
  font-weight: 900 !important;
  opacity: 1 !important;
}
.cta-btn--download:hover { box-shadow: 4px 4px 0 rgba(255,255,255,0.5); transform: translateY(-2px); }

/* ══════════════════════════════════════
   POSTER SECTION
══════════════════════════════════════ */
.poster-section {
  background: var(--cream);
  padding: 56px 0 80px;
  text-align: center;
  margin-bottom: 60px;
}
.poster-title {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.poster-title::before {
  content: '📄 ';
}
.poster-img {
  max-width: 760px;
  width: 92%;
  border-radius: 16px;
  border: 2.5px solid var(--black);
  box-shadow: 8px 8px 0 var(--black);
  display: block;
  margin: 0 auto;
  transition: transform 0.3s, box-shadow 0.3s;
}
.poster-img:hover {
  transform: translateY(-4px);
  box-shadow: 12px 12px 0 var(--black);
}

/* ══════════════════════════════════════
   DOWNLOAD SECTION
══════════════════════════════════════ */
.download-section {
  background: #f5f3ee;
  padding: 40px 24px;
  text-align: center;
}
.download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #fde68a;
  color: #1a1a1a;
  border: 3px solid #1a1a1a;
  border-radius: 100px;
  padding: 18px 48px;
  font-size: 1.1rem;
  font-weight: 900;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 4px 4px 0 #1a1a1a;
  width: 100%;
  max-width: 360px;
}
.download-btn:hover {
  transform: translateY(-3px);
  box-shadow: 6px 8px 0 #1a1a1a;
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
.footer {
  background: #111;
  color: rgba(255,255,255,0.45);
  text-align: center;
  padding: 24px;
  font-size: 0.82rem;
}
.footer a { color: var(--purple); transition: color 0.2s; }
.footer a:hover { color: white; }

/* ══════════════════════════════════════
   SCROLL PROGRESS BAR
══════════════════════════════════════ */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purple-d), var(--pink-d), var(--yellow-d));
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 900px) {
  /* 제목바 */
  .ptb-name { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .ptb-desc { font-size: 0.75rem; }

  /* hero */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-photo-col { display: flex; justify-content: center; text-align: center; }
  .photo-arch { width: 200px; height: 240px; }
  .hero-badges { justify-content: center; }
  .hero-card { text-align: left; }
  .contact-row { justify-content: flex-start; text-align: left; }
  .contact-label { text-align: left; }
  .contact-val { text-align: left; }
  .speech-bubble { margin: 0 auto 14px; }

  .main-content { grid-template-columns: 1fr; gap: 0; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .ptb-name { letter-spacing: 0.1em; }
  .ptb-pills { gap: 6px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .target-grid  { grid-template-columns: repeat(2, 1fr); }
  .cta-btns     { flex-direction: column; align-items: center; gap: 16px; }
  .cta-btn      { width: 100%; max-width: 320px; justify-content: center; font-size: 0.95rem; padding: 16px 24px; }
  .cta-btn--download {
    background: var(--yellow) !important;
    color: var(--black) !important;
    border: 2.5px solid var(--black) !important;
    opacity: 1 !important;
    font-weight: 900 !important;
    display: inline-flex !important;
  }
  .section-tag  { font-size: 0.85rem; padding: 8px 20px; }
  .blob-3       { display: none; }
  .hero-card    { padding: 20px 18px; }
}
