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

:root {
  --forest:        #2D5540;
  --forest-deep:   #1E3D2D;
  --forest-mid:    #3A6B51;
  --forest-light:  #EAF0EB;
  --cream:         #F6F1E5;
  --cream-warm:    #E8E0C8;
  --gold:          #C4A670;
  --gold-light:    #D4BA88;
  --gold-deep:     #A8893A;
  --ink:           #1A1A18;
  --gray:          #6B6B5A;
  --line:          #DDD8C4;
  --white:         #FFFFFF;
}

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(--gold);
  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(--forest); 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 10%;
  display: block;
  transform: scale(1.45);
  transform-origin: center 30%;
}

.hero-wave {
  display: block;
  width: 100%;
  height: 56px;
  margin-top: -56px;
  position: relative;
  z-index: 2;
  fill: var(--forest);
  transform: scaleX(1.02);
}

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

.hero-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.hero-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
}
.hero-logo-text { display: flex; flex-direction: column; }
.hero-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--white);
  line-height: 1.1;
}
.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(--gold-light);
  padding: 5px 12px;
  background: rgba(196,166,112,0.15);
  border-radius: 100px;
  border: 1px solid rgba(196,166,112,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(--cream); }
.connect .section-label { color: var(--forest); }
.connect .section-title em { color: var(--forest); }

.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(--forest-mid) 0%, var(--forest) 55%, var(--forest-deep) 100%);
  border-radius: 100px;
  text-decoration: none;
  color: var(--cream);
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 34px rgba(45,85,64,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(--gold-light); }
.kakao-cta-text {
  font-size: 17px; font-weight: 800; letter-spacing: -0.4px;
  color: var(--cream);
  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(45,85,64,0.16);
}
.channel-btn-icon svg { width: 24px; height: 24px; }
.channel-btn-icon.phone { background: var(--forest); }
.channel-btn-icon.instagram {
  background: linear-gradient(135deg, #FEDA77 0%, #F58529 25%, #DD2A7B 50%, #8134AF 75%, #515BD4 100%);
}
.channel-btn-icon.map { background: var(--forest-mid); }
.channel-btn-icon.naver { background: #03C75A; }
.channel-btn-icon.blog { background: #03C75A; }
.channel-btn-label {
  font-size: 12.5px; font-weight: 700; color: var(--ink);
  letter-spacing: -0.2px;
}

/* ==================== STUDIO (매장 소개) ==================== */
.studio { background: var(--white); }
.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(--forest); 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(45,85,64,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(--gold-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(--forest);
  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(196,166,112,0.16);
  color: var(--gold-deep);
  letter-spacing: -0.2px;
}

.about-quote {
  margin-top: 24px;
  position: relative;
  background: var(--cream);
  border: 1px solid var(--cream-warm);
  border-radius: 14px;
  padding: 28px 24px 20px;
  box-shadow: 0 8px 22px rgba(45,85,64,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(--forest);
  display: flex; align-items: center; justify-content: flex-end; gap: 8px;
}
.about-quote-sig::before { content: ''; width: 14px; height: 1px; background: var(--forest); opacity: 0.5; }

/* ==================== SERVICE ==================== */
.service {
  background: var(--forest);
  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(196,166,112,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(196,166,112,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.service .section-label { color: var(--gold-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(--gold-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-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(196,166,112,0.55), rgba(196,166,112,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(196,166,112,0.55);
  background: var(--forest);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px; font-weight: 600; font-style: italic;
  color: var(--gold-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(196,166,112,0.16);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--gold-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(196,166,112,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(196,166,112,0.30); }
  35% { box-shadow: 0 0 0 8px rgba(196,166,112,0); }
}

.service-step-text { min-width: 0; padding-top: 1px; }
.service-step-title { font-size: 16px; font-weight: 800; color: var(--gold-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) {
  .service-step-icon,
  .service-step-icon::after { animation: none; }
  .service-step-rail::before { transition-delay: 0s; }
}

/* ==================== AUDIENCE ==================== */
.audience { background: var(--cream); 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(45,85,64,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(196,166,112,0.34), transparent 70%);
  filter: blur(26px);
}
.audience .reveal { position: relative; z-index: 1; }
.audience .section-label { color: var(--forest); }
.audience .section-title em { color: var(--forest); }
.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(45,85,64,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-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(--forest);
  letter-spacing: -0.3px; margin-bottom: 8px;
}
.audience-tag span { color: var(--gold-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(--forest); }

.audience-item:hover { box-shadow: 0 18px 38px rgba(45,85,64,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; }
}

/* ==================== PROFILE ==================== */
.profile { background: var(--white); }
.profile .section-label { color: var(--gold-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(196,166,112,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(--forest); font-style: normal; }
.pf-role { font-size: 11.5px; font-weight: 700; color: var(--gold-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(--forest); 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: 20px; top: 13%; bottom: auto; height: 92%; z-index: 1; }
.pf-photo img {
  height: 100%; width: auto; display: block;
  filter: drop-shadow(0 8px 14px rgba(45,85,64,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(--gold-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(--gold); }
.pf-step.now .pf-dot { background: var(--forest); border-color: var(--forest); box-shadow: 0 0 0 4px var(--forest-light); }
.pf-when { flex-shrink: 0; font-size: 10px; font-weight: 800; color: var(--gray); }
.pf-step.now .pf-when { color: var(--forest); }
.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(--forest); 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; }

/* 핵심 자격 — 2×2 메달 카드 */
.cert-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cert-grid-card { background: var(--white); border-radius: 16px; padding: 17px 15px; box-shadow: 0 8px 22px rgba(45,85,64,0.09); }
.cert-grid-ic { width: 32px; height: 32px; border-radius: 10px; background: var(--forest-light); color: var(--forest); display: flex; align-items: center; justify-content: center; margin-bottom: 11px; }
.cert-grid-ic svg { width: 17px; height: 17px; }
.cert-grid-t { font-size: 12.5px; font-weight: 800; color: var(--ink); line-height: 1.35; letter-spacing: -0.3px; }
.cert-grid-s { font-size: 10.5px; color: var(--gray); margin-top: 4px; line-height: 1.4; }

/* 그 외 자격 — 접기/열기 (소프트 토글) */
.cert-more { margin-top: 18px; text-align: center; }
.cert-more > summary {
  list-style: none; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px;
  background: var(--forest);
  color: var(--cream);
  border-radius: 100px;
  box-shadow: 0 8px 20px rgba(45,85,64,0.24);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.cert-more > summary::-webkit-details-marker { display: none; }
.cert-more > summary:active { transform: scale(0.97); }
.cert-more-label { font-size: 13px; font-weight: 700; color: var(--cream); letter-spacing: -0.2px; }
.cert-cnt { color: var(--gold-light); font-weight: 800; margin-left: 2px; }
.cert-toggle-text { font-size: 12px; font-weight: 700; color: var(--gold-light); }
.cert-more .t-close { display: none; }
.cert-more[open] .t-open { display: none; }
.cert-more[open] .t-close { display: inline; }
.cert-chev { width: 15px; height: 15px; color: var(--cream); flex-shrink: 0; transition: transform 0.25s ease; }
.cert-more[open] .cert-chev { transform: rotate(180deg); }
.cert-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.cert-tag {
  font-size: 11.5px; font-weight: 600; color: var(--gray);
  background: var(--white);
  padding: 8px 14px; border-radius: 100px; letter-spacing: -0.2px;
  word-break: keep-all;
  box-shadow: 0 3px 10px rgba(45,85,64,0.07);
}

/* ==================== CONTACT ==================== */
.contact { background: var(--forest-deep); color: var(--white); padding: 36px 24px calc(env(safe-area-inset-bottom, 0px) + 40px); }
.contact .section-label { color: var(--gold-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(--gold-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: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; letter-spacing: 3px; color: rgba(255,255,255,0.85); margin-bottom: 4px; }
.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; }

