* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", system-ui, sans-serif;
  background-color: #fafafa;
  color: #2a2a2a;
  line-height: 1.75;
  font-size: 15px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header styles moved to header.css */

main {
  flex: 1;
  margin-top: 70px;
}

.section {
  width: 100%;
  padding: 90px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  transition: all 0.3s ease;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.75);
  z-index: 0;
}

.section > * {
  position: relative;
  z-index: 1;
}

.section-header,
.section > .two-col,
.section > .grid-exhibitions,
.section > .grid-works,
.section > .grid-artists,
.section > .contact-box {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

/* About Section - 작가/예술가 관련 이미지 */
.section-about {
  background-image: url('../img/KakaoTalk_Photo_2025-12-05-15-18-37.png');
}

.section-about::before {
  background: rgba(0, 0, 0, 0.4);
}

/* Exhibitions Section - 갤러리/전시 공간 이미지 */
.section-exhibitions {
  background-image: url('../img/KakaoTalk_Photo_2025-12-05-15-20-18.png');
}

.section-exhibitions::before {
  background: rgba(0, 0, 0, 0.4);
}

/* Works Section - 작품/창작 이미지 */
.section-works {
  background-image: url('../img/KakaoTalk_Photo_2025-12-05-15-23-02.png');
}

.section-works::before {
  background: rgba(0, 0, 0, 0.4);
}

/* Artists Section - 작가/예술가 관련 이미지 */
.section-artists {
  background-image: url('../img/KakaoTalk_Photo_2025-12-05-15-20-18.png');
}

.section-artists::before {
  background: rgba(0, 0, 0, 0.4);
}

/* Contact Section - 화이트 배경 */
.section-contact {
  background: #ffffff;
}

.section-contact::before {
  display: none;
}

.section-contact .section-kicker {
  color: #667eea;
  text-shadow: none;
}

.section-contact .section-title {
  color: #1a1a1a;
  text-shadow: none;
}

.section-contact .section-sub {
  color: #666666;
  text-shadow: none;
}

@media (max-width: 720px) {
  body {
    font-size: 14px;
  }
  
  .section {
    padding: 60px 0;
    background-attachment: scroll;
  }
  
  .section-header {
    padding: 30px 20px !important;
    margin-bottom: 50px;
    padding-bottom: 30px !important;
  }
  
  .section-title-block {
    gap: 20px;
    padding-bottom: 30px;
    margin-bottom: 0;
  }
  
  .section-kicker {
    font-size: 11px;
    margin-bottom: 4px;
  }
  
  .section-title {
    font-size: 26px;
    line-height: 1.4;
    margin-bottom: 0;
  }
  
  .section-sub {
    font-size: 13px;
    padding-top: 24px;
    margin-top: 8px;
    line-height: 1.7;
  }
  
  .section > .two-col,
  .section > .grid-exhibitions,
  .section > .grid-works,
  .section > .grid-artists {
    padding: 0 16px;
    margin-top: 20px;
  }
  
  .section-header::after {
    width: 50px;
    height: 3px;
    bottom: 0;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .section-header {
    padding: 24px 16px !important;
    margin-bottom: 40px;
    padding-bottom: 32px !important;
  }
  
  .section-title-block {
    gap: 18px;
    padding-bottom: 28px;
    margin-bottom: 0;
  }
  
  .section-kicker {
    margin-bottom: 6px;
  }
  
  .section-title {
    font-size: 22px;
    line-height: 1.4;
    margin-bottom: 0;
  }
  
  .section-sub {
    font-size: 13px;
    padding-top: 20px;
    margin-top: 10px;
    line-height: 1.7;
  }
  
  .section > .two-col,
  .section > .grid-exhibitions,
  .section > .grid-works,
  .section > .grid-artists {
    padding: 0 16px;
    margin-top: 24px;
  }
  
  .section-header::after {
    width: 40px;
    height: 2px;
    bottom: 0;
  }
  
  /* 모바일에서 hover 효과 최소화 */
  .card:hover,
  .exhibition-card:hover,
  .work-card:hover,
  .artist-profile-card:hover,
  .contact-box:hover {
    transform: none;
  }
  
  .exhibition-card:hover::before,
  .work-card:hover::before {
    transform: scaleX(1);
  }
}

.hero {
  min-height: 90vh;
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: 
    linear-gradient(rgba(26,26,36,0.5), rgba(26,26,36,0.7)),
    url('../img/20240116_224532.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding-inline: 20px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    padding-inline: 16px;
    gap: 32px;
  }
  
  .hero {
    min-height: 80vh;
    padding-top: 100px;
    padding-bottom: 100px;
    background-attachment: scroll;
  }
  
  .hero-name {
    font-size: 32px;
  }
  
  .hero-role {
    font-size: 14px;
  }
  
  .hero-text {
    font-size: 14px;
  }
  
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  
  .btn-primary,
  .btn-ghost {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
  }
  
  .hero-highlight-card {
    padding: 24px 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 70vh;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .hero-name {
    font-size: 28px;
  }
  
  .hero-role {
    font-size: 13px;
  }
  
  .hero-text {
    font-size: 13px;
  }
  
  .hero-highlight-card {
    padding: 20px 16px;
  }
  
  .hero-highlight-title {
    font-size: 18px;
  }
}

.hero-label {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a0a0a0;
  margin-bottom: 12px;
}

.hero-name {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.2;
}

.hero-role {
  font-size: 16px;
  color: #c0c0c0;
  margin-bottom: 18px;
}

.hero-text {
  font-size: 15px;
  color: #d0d0d0;
  margin-bottom: 24px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 13px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.16s ease-out, transform 0.12s ease-out, box-shadow 0.16s ease-out, border-color 0.16s ease-out;
}

.btn-primary {
  background: #ffffff;
  color: #0a0a0f;
  font-weight: 600;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35), 0 2px 8px rgba(0,0,0,0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.45), 0 4px 12px rgba(0,0,0,0.25);
  background: #f8f8f8;
}

.btn-ghost {
  background: rgba(255,255,255,0.02);
  border-color: rgba(255,255,255,0.18);
  color: #fafafa;
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.35);
}

.hero-highlight-card {
  border-radius: 20px;
  padding: 28px 24px 24px;
  background: rgba(30,30,40,0.96);
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 12px 32px rgba(0,0,0,0.45), 0 4px 16px rgba(0,0,0,0.3);
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-highlight-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 6px 20px rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.25);
}

.hero-highlight-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #a0a0a0;
  margin-bottom: 10px;
}

.hero-highlight-title {
  font-size: 17px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
}

.hero-highlight-meta {
  font-size: 12px;
  color: #b0b0b0;
  margin-bottom: 12px;
}

.hero-highlight-text {
  font-size: 14px;
  color: #d0d0d0;
  line-height: 1.7;
  margin-bottom: 12px;
}

.hero-highlight-card a {
  font-size: 13px;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: opacity 0.2s ease;
}

.hero-highlight-card a:hover {
  opacity: 0.8;
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 40px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
  padding: 40px 30px;
  position: relative;
  background: transparent;
}

.section-header::after {
  content: '';
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #7c3aed, #a855f7, #ec4899);
  border-radius: 3px;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
}

.section-title-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 30px;
}

.section-kicker {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin-bottom: 0;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.section-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 420px;
  line-height: 1.6;
  margin-top: 0;
  padding-top: 24px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 32px;
}

@media (max-width: 860px) {
  .two-col {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
  
  .card {
    padding: 32px 28px 28px;
    margin-bottom: 8px;
  }
  
  .card-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  
  .card-body {
    font-size: 14px;
    line-height: 1.8;
  }
}

@media (max-width: 480px) {
  .two-col {
    gap: 28px;
  }
  
  .card {
    padding: 28px 24px 24px;
    border-radius: 16px;
    margin-bottom: 12px;
  }
  
  .card-title {
    font-size: 18px;
    margin-bottom: 14px;
  }
  
  .card-body {
    font-size: 13px;
    line-height: 1.8;
  }
}

.card {
  border-radius: 24px;
  padding: 36px 32px 32px;
  background: transparent;
  border: none;
  font-size: 15px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7c3aed, #a855f7, #ec4899, #f472b6);
  background-size: 200% 100%;
  animation: gradientShift 4s ease infinite;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.3);
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 60px rgba(102, 126, 234, 0.25),
    0 8px 24px rgba(0,0,0,0.15),
    inset 0 1px 0 rgba(255,255,255,0.9);
  border-color: rgba(102, 126, 234, 0.3);
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 애니메이션 적용 */
.card,
.exhibition-card,
.work-card {
  animation: fadeInUp 0.6s ease-out;
}

.card:nth-child(1) {
  animation-delay: 0.1s;
}

.card:nth-child(2) {
  animation-delay: 0.2s;
}

.exhibition-card:nth-child(1) {
  animation-delay: 0.1s;
}

.exhibition-card:nth-child(2) {
  animation-delay: 0.2s;
}

.exhibition-card:nth-child(3) {
  animation-delay: 0.3s;
}

.work-card:nth-child(1) {
  animation-delay: 0.1s;
}

.work-card:nth-child(2) {
  animation-delay: 0.2s;
}

.work-card:nth-child(3) {
  animation-delay: 0.3s;
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  position: relative;
  display: inline-block;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.card-title::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 45px;
  height: 3px;
  background: linear-gradient(90deg, #7c3aed, #a855f7);
  border-radius: 3px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 6px rgba(124, 58, 237, 0.4);
}

.card:hover .card-title::after {
  width: 100%;
}

.card-body {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.8;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.grid-exhibitions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

@media (max-width: 720px) {
  .grid-exhibitions {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .exhibition-card {
    padding: 24px 20px;
  }
  
  .ex-title {
    font-size: 20px;
  }
  
  .ex-meta {
    font-size: 13px;
  }
  
  .ex-desc {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .grid-exhibitions {
    gap: 16px;
  }
  
  .exhibition-card {
    padding: 20px 16px;
    border-radius: 16px;
  }
  
  .ex-title {
    font-size: 18px;
  }
  
  .ex-desc {
    font-size: 13px;
  }
}

.exhibition-card {
  border-radius: 22px;
  padding: 28px 24px 24px;
  background: transparent;
  border: none;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.exhibition-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7c3aed, #a855f7, #ec4899);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.4);
}

.exhibition-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(102, 126, 234, 0.3);
  box-shadow: 
    0 16px 48px rgba(102, 126, 234, 0.2),
    0 8px 24px rgba(0,0,0,0.12);
}

.exhibition-card:hover::before {
  transform: scaleX(1);
}

.ex-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.exhibition-card:hover .ex-title {
  color: #ffffff;
}

.ex-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.ex-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin-top: 6px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.ex-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.15), rgba(168, 85, 247, 0.15));
  border: 1px solid rgba(124, 58, 237, 0.35);
  font-size: 11px;
  font-weight: 600;
  color: #a855f7;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  align-self: flex-start;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.2);
}

.exhibition-card:hover .ex-pill {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.08);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

.grid-works {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 18px;
}

@media (max-width: 720px) {
  .grid-works {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .work-card {
    padding: 24px 20px;
  }
  
  .work-title {
    font-size: 18px;
  }
  
  .work-label {
    font-size: 11px;
    padding: 4px 10px;
  }
}

@media (max-width: 480px) {
  .grid-works {
    gap: 16px;
  }
  
  .work-card {
    padding: 20px 16px;
    border-radius: 16px;
  }
  
  .work-title {
    font-size: 16px;
  }
  
  .work-card p {
    font-size: 13px;
  }
}

.work-card {
  border-radius: 22px;
  padding: 28px 24px 24px;
  background: transparent;
  border: none;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7c3aed, #a855f7, #ec4899);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.4);
}

.work-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(102, 126, 234, 0.3);
  box-shadow: 
    0 16px 48px rgba(102, 126, 234, 0.2),
    0 8px 24px rgba(0,0,0,0.12);
}

.work-card:hover::before {
  transform: scaleX(1);
}

.work-card p {
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.7;
  margin-top: 4px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5), 0 1px 3px rgba(0, 0, 0, 0.3);
}

.work-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  border-radius: 12px;
  display: inline-block;
  width: fit-content;
  margin-bottom: 4px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.work-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5), 0 4px 12px rgba(0, 0, 0, 0.3);
}

.work-card:hover .work-title {
  color: #ffffff;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.work-tag {
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  transition: all 0.3s ease;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.work-card:hover .work-tag {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
  border-color: rgba(102, 126, 234, 0.4);
  transform: scale(1.05);
}

.contact-box {
  border-radius: 24px;
  padding: 72px 64px 64px;
  background: transparent;
  border: none;
  font-size: 15px;
  max-width: 600px;
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 20px;
}

.contact-box::before {
  display: none;
}

.contact-box::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.08) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.contact-box:hover {
  transform: translateY(-4px);
  border-color: rgba(102, 126, 234, 0.4);
}

.contact-box:hover::before {
  display: none;
}

.contact-box-title {
  font-weight: 700;
  font-size: 22px;
  color: #1a1a1a;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
  margin-top: 8px;
  position: relative;
  padding-bottom: 12px;
}

.contact-box-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
  border-radius: 2px;
  animation: expandLine 0.6s ease-out;
}

@keyframes gradientTextShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes expandLine {
  from {
    width: 0;
  }
  to {
    width: 60px;
  }
}

.contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 15px;
  margin-top: 20px;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05), rgba(118, 75, 162, 0.05));
  border-radius: 12px;
  border-left: 3px solid transparent;
  border-image: linear-gradient(135deg, #667eea, #764ba2) 1;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-row::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s ease;
}

.contact-row:hover {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.contact-row:hover::before {
  left: 100%;
}

.contact-label {
  width: 100px;
  color: #667eea;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 8px;
}

.contact-label::before {
  content: '';
  position: absolute;
  left: 0;
  width: 3px;
  height: 18px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 2px;
}

.contact-row > div:last-child {
  flex: 1;
  color: #1a1a1a;
  font-weight: 500;
  min-width: 200px;
}

.contact-row a {
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

.contact-row a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  transition: width 0.3s ease;
  border-radius: 1px;
}

.contact-row a:hover {
  color: #764ba2;
}

.contact-row a:hover::after {
  width: 100%;
}

@media (max-width: 720px) {
  .contact-box {
    padding: 40px 28px 28px;
    max-width: 100%;
    border-radius: 0;
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
  }
  
  .contact-box::before {
    left: 0;
    right: 0;
  }
  
  .contact-box-title {
    font-size: 20px;
    margin-bottom: 28px;
  }
  
  .contact-row {
    padding: 16px 0;
    margin-top: 20px;
    border-radius: 0;
    background: transparent;
    border-left: none;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  
  .contact-row:last-child {
    border-bottom: none;
  }
  
  .contact-row::before {
    display: none;
  }
  
  .contact-label {
    width: 100%;
    font-size: 13px;
    padding-left: 0;
    margin-bottom: 4px;
  }
  
  .contact-label::before {
    display: none;
  }
  
  .contact-row > div:last-child {
    font-size: 14px;
    width: 100%;
    min-width: 0;
  }
  
  .contact-row:hover {
    transform: none;
    background: transparent;
    box-shadow: none;
  }
}

@media (max-width: 480px) {
  .contact-box {
    padding: 32px 20px 20px;
    border-radius: 0;
    margin-left: -12px;
    margin-right: -12px;
    width: calc(100% + 24px);
  }
  
  .contact-box-title {
    font-size: 18px;
    margin-bottom: 24px;
    padding-bottom: 10px;
  }
  
  .contact-box-title::after {
    width: 50px;
    height: 2px;
  }
  
  .contact-row {
    padding: 14px 0;
    margin-top: 18px;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
  
  .contact-label {
    width: 100%;
    font-size: 12px;
    font-weight: 600;
    color: #667eea;
    margin-bottom: 2px;
  }
  
  .contact-row > div:last-child {
    font-size: 13px;
    width: 100%;
    min-width: 0;
    word-break: break-word;
  }
  
  .contact-row a {
    font-size: 13px;
  }
}

/* Artists Section Styles */
.grid-artists {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  justify-content: center;
}

.artist-profile-card {
  border-radius: 20px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 0;
}

.artist-profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #4facfe);
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
  z-index: 1;
}

.artist-profile-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 
    0 12px 40px rgba(102, 126, 234, 0.2),
    0 6px 20px rgba(0,0,0,0.1);
  border-color: rgba(102, 126, 234, 0.2);
}

.artist-image-wrapper {
  position: relative;
  width: 300px;
  min-width: 300px;
  height: 100%;
  overflow: hidden;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: stretch;
}

.artist-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.artist-profile-card:hover .artist-image {
  transform: scale(1.1);
}

.artist-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 0%, rgba(102, 126, 234, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.artist-profile-card:hover .artist-overlay {
  opacity: 1;
}

.artist-info {
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.artist-period-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 6px 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15), rgba(118, 75, 162, 0.15));
  border: 1px solid rgba(102, 126, 234, 0.3);
  font-size: 11px;
  font-weight: 700;
  color: #667eea;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.artist-profile-card:hover .artist-period-badge {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.05);
}

.artist-name {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.02em;
  margin: 0;
  transition: all 0.3s ease;
}

.artist-profile-card:hover .artist-name {
  color: #667eea;
}

.artist-title {
  font-size: 14px;
  color: #666666;
  font-weight: 500;
  margin: 0;
}

.artist-bio {
  font-size: 14px;
  color: #4a4a4a;
  line-height: 1.7;
  margin: 8px 0;
  flex: 1;
}

.artist-email {
  font-size: 13px;
  color: #667eea;
  font-weight: 500;
  margin: 4px 0;
  word-break: break-all;
}

.btn-artist-profile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  border: 2px solid rgba(102, 126, 234, 0.3);
  color: #667eea;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 8px;
  align-self: flex-start;
}

.btn-artist-profile:hover {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

@media (max-width: 720px) {
  .grid-artists {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 16px;
  }
  
  .artist-profile-card {
    flex-direction: column;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
  }
  
  .artist-profile-card:hover {
    transform: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
  }
  
  .artist-image-wrapper {
    width: 100%;
    min-width: 100%;
    height: 220px;
  }
  
  .artist-info {
    padding: 20px 18px 18px;
    gap: 10px;
  }
  
  .artist-name {
    font-size: 20px;
  }
  
  .artist-title {
    font-size: 13px;
  }
  
  .artist-bio {
    font-size: 13px;
    margin: 6px 0;
  }
  
  .artist-email {
    font-size: 12px;
    margin: 4px 0;
  }
  
  .btn-artist-profile {
    padding: 10px 20px;
    font-size: 13px;
    margin-top: 4px;
  }
}

@media (max-width: 480px) {
  .grid-artists {
    gap: 16px;
    padding: 0 12px;
  }
  
  .artist-profile-card {
    border-radius: 12px;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.03);
  }
  
  .artist-profile-card:hover {
    transform: none;
  }
  
  .artist-image-wrapper {
    width: 100%;
    min-width: 100%;
    height: 180px;
  }
  
  .artist-info {
    padding: 18px 14px 14px;
    gap: 8px;
  }
  
  .artist-period-badge {
    padding: 5px 12px;
    font-size: 10px;
  }
  
  .artist-name {
    font-size: 18px;
  }
  
  .artist-title {
    font-size: 12px;
    line-height: 1.5;
  }
  
  .artist-bio {
    font-size: 12px;
    line-height: 1.6;
    margin: 4px 0;
  }
  
  .artist-email {
    font-size: 11px;
    margin: 4px 0;
  }
  
  .btn-artist-profile {
    padding: 10px 18px;
    font-size: 12px;
    width: 100%;
    text-align: center;
    margin-top: 6px;
  }
}

/* Scroll Animation Styles */
.section-header,
.card,
.artist-profile-card,
.exhibition-card,
.work-card,
.contact-box {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.section-header.animate-on-scroll,
.card.animate-on-scroll,
.artist-profile-card.animate-on-scroll,
.exhibition-card.animate-on-scroll,
.work-card.animate-on-scroll,
.contact-box.animate-on-scroll {
  opacity: var(--scroll-opacity, 1);
  transform: translateY(calc(var(--scroll-progress, 1) * -10px)) 
             scale(var(--scroll-scale, 1));
}

.section-header.animate-active,
.card.animate-active,
.artist-profile-card.animate-active,
.exhibition-card.animate-active,
.work-card.animate-active,
.contact-box.animate-active {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Staggered animation for cards in grids */
.grid-exhibitions .exhibition-card:nth-child(1) {
  transition-delay: 0.05s;
}

.grid-exhibitions .exhibition-card:nth-child(2) {
  transition-delay: 0.15s;
}

.grid-exhibitions .exhibition-card:nth-child(3) {
  transition-delay: 0.25s;
}

.grid-works .work-card:nth-child(1) {
  transition-delay: 0.05s;
}

.grid-works .work-card:nth-child(2) {
  transition-delay: 0.15s;
}

.grid-works .work-card:nth-child(3) {
  transition-delay: 0.25s;
}

.two-col .card:nth-child(1) {
  transition-delay: 0.05s;
}

.two-col .card:nth-child(2) {
  transition-delay: 0.15s;
}

/* Smooth section transitions */
.section {
  transition: transform 0.3s ease-out;
}

/* Parallax effect for sections */
.section-about,
.section-exhibitions,
.section-works,
.section-artists,
.section-contact {
  transition: transform 0.1s ease-out;
}

/* Hero section - 이미 보이는 상태이므로 애니메이션 제외 */
.hero,
.hero-inner,
.hero-highlight-card {
  opacity: 1;
  transform: none;
}

/* Footer styles moved to footer.css */

