/* 기본 스타일 (데스크톱 1200px 이상) */
.nuruk-special-section {
  background: var(--light-gray);
  padding: 48px 0 32px 0;
  text-align: center;
}

.nuruk-special-title {
  color: var(--primary-color);
  font-size: 2rem; /* 32px */
  font-weight: bold;
  margin: 2rem 0 2rem 0;
  line-height: 1.2;
}

.nuruk-special-subtitle {
  color: var(--secondary-color);
  font-size: 1.15rem; /* 18.4px */
  margin-bottom: 32px;
  line-height: 1.4;
}

.nuruk-special-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  max-width: 600px;
  margin: 0 auto 24px auto;
}

.nuruk-special-item {
  background: var(--bg-color);
  border-radius: 18px;
  box-shadow: var(--shadow-light);
  display: flex;
  align-items: center;
  padding: 24px 20px;
  width: 100%;
  max-width: 600px;
  position: relative;
}

.nuruk-special-number {
  background: var(--primary-gradient);
  color: #fff;
  font-size: 1.5rem; /* 24px */
  font-weight: bold;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -22px;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 2px 8px rgba(166,131,88,0.10);
  border: 4px solid var(--light-gray);
}

.nuruk-special-content {
  margin-left: 38px;
  text-align: left;
}

.nuruk-special-heading {
  font-size: 1.15rem; /* 18.4px */
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 6px;
  line-height: 1.3;
}

.nuruk-special-desc {
  font-size: 1rem; /* 16px */
  color: var(--text-color);
  line-height: 1.6;
}

/* 애니메이션 효과 */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* 자가누룩 공정과정 섹션 */
.nuruk-process-section {
  background: var(--bg-color);
  padding: 64px 0;
  position: relative;
}

.nuruk-process-title {
  color: var(--primary-color);
  font-size: 2rem; /* 32px */
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.2;
}

.nuruk-process-subtitle {
  color: var(--secondary-color);
  font-size: 1.15rem; /* 18.4px */
  text-align: center;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

.nuruk-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nuruk-process-card {
  background: var(--light-gray);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  position: relative;
  cursor: pointer;
}

.nuruk-process-image {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  position: relative;
  overflow: hidden;
}

.nuruk-process-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nuruk-process-step {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary-gradient);
  color: white;
  font-size: 0.9rem; /* 14.4px */
  font-weight: bold;
  padding: 6px 12px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(166,131,88,0.3);
}

.nuruk-process-content {
  padding: 24px;
}

.nuruk-process-name {
  font-size: 1.25rem; /* 20px */
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 8px;
  line-height: 1.3;
}

.nuruk-process-desc {
  font-size: 0.95rem; /* 15.2px */
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 16px;
}

.nuruk-process-details {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem; /* 13.6px */
  color: var(--secondary-color);
}

.nuruk-process-icon {
  width: 16px;
  height: 16px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nuruk-process-icon::before {
  content: "⏱";
  color: white;
  font-size: 10px;
}

/* 모달 스타일 */
.nuruk-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.nuruk-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease-out;
}

.nuruk-modal-content {
  background: var(--bg-color);
  border-radius: 20px;
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  margin: 20px;
  animation: slideUp 0.3s ease-out;
}

.nuruk-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.1);
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-color);
}

.nuruk-modal-close:hover {
  background: rgba(0, 0, 0, 0.2);
}

.nuruk-modal-image {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  border-radius: 20px 20px 0 0;
}

.nuruk-modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.nuruk-modal-body {
  padding: 32px;
}

.nuruk-modal-title {
  font-size: 1.5rem; /* 24px */
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 16px;
  line-height: 1.3;
}

.nuruk-modal-description {
  font-size: 1rem; /* 16px */
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 24px;
}

.nuruk-modal-meta {
  display: flex;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

.nuruk-modal-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nuruk-modal-meta-label {
  font-size: 0.8rem; /* 12.8px */
  color: var(--secondary-color);
  font-weight: 500;
}

.nuruk-modal-meta-value {
  font-size: 0.9rem; /* 14.4px */
  color: var(--primary-color);
  font-weight: bold;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* 태블릿 (1024px 이하) - 약 90% 크기 */
@media (max-width: 1024px) {
  .nuruk-special-title {
    font-size: 1.8rem; /* 28.8px - 90% */
    margin: 1.5rem 0;
  }
  
  .nuruk-special-subtitle {
    font-size: 1.05rem; /* 16.8px - 90% */
    margin-bottom: 28px;
  }
  
  .nuruk-special-heading {
    font-size: 1.05rem; /* 16.8px - 90% */
  }
  
  .nuruk-special-desc {
    font-size: 0.9rem; /* 14.4px - 90% */
    line-height: 1.5;
  }
  
  .nuruk-special-number {
    font-size: 1.35rem; /* 21.6px - 90% */
  }
  
  .nuruk-process-title {
    font-size: 1.8rem; /* 28.8px - 90% */
  }
  
  .nuruk-process-subtitle {
    font-size: 1.05rem; /* 16.8px - 90% */
    margin-bottom: 40px;
  }
  
  .nuruk-process-name {
    font-size: 1.125rem; /* 18px - 90% */
  }
  
  .nuruk-process-desc {
    font-size: 0.85rem; /* 13.6px - 90% */
    line-height: 1.5;
  }
  
  .nuruk-process-details {
    font-size: 0.75rem; /* 12px - 90% */
  }
  
  .nuruk-modal-title {
    font-size: 1.35rem; /* 21.6px - 90% */
  }
  
  .nuruk-modal-description {
    font-size: 0.9rem; /* 14.4px - 90% */
    line-height: 1.6;
  }
}

/* 태블릿 세로/모바일 가로 (768px 이하) - 약 80% 크기 */
@media (max-width: 768px) {
  .nuruk-special-section {
    padding: 40px 16px 24px 16px;
  }
  
  .nuruk-special-list {
    gap: 24px;
    max-width: 95%;
  }
  
  .nuruk-special-title {
    font-size: 1.6rem; /* 25.6px - 80% */
    margin: 1.2rem 0;
  }
  
  .nuruk-special-subtitle {
    font-size: 0.95rem; /* 15.2px - 80% */
    margin-bottom: 24px;
  }
  
  .nuruk-special-item {
    padding: 20px 16px;
  }
  
  .nuruk-special-heading {
    font-size: 0.95rem; /* 15.2px - 80% */
    margin-bottom: 4px;
  }
  
  .nuruk-special-desc {
    font-size: 0.8rem; /* 12.8px - 80% */
    line-height: 1.5;
  }
  
  .nuruk-special-number {
    font-size: 1.2rem; /* 19.2px - 80% */
    width: 40px;
    height: 40px;
    left: -20px;
  }
  
  .nuruk-special-content {
    margin-left: 34px;
  }
  
  .nuruk-process-section {
    padding: 48px 16px;
  }
  
  .nuruk-process-title {
    font-size: 1.6rem; /* 25.6px - 80% */
    margin-bottom: 12px;
  }
  
  .nuruk-process-subtitle {
    font-size: 0.95rem; /* 15.2px - 80% */
    margin-bottom: 36px;
    padding: 0 20px;
  }
  
  .nuruk-process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 16px;
  }
  
  .nuruk-process-image {
    height: 180px;
  }
  
  .nuruk-process-content {
    padding: 20px;
  }
  
  .nuruk-process-name {
    font-size: 1rem; /* 16px - 80% */
    margin-bottom: 6px;
  }
  
  .nuruk-process-desc {
    font-size: 0.75rem; /* 12px - 80% */
    line-height: 1.5;
    margin-bottom: 12px;
  }
  
  .nuruk-process-details {
    font-size: 0.7rem; /* 11.2px - 80% */
  }
  
  .nuruk-process-step {
    font-size: 0.75rem; /* 12px - 80% */
  }
  
  .nuruk-modal-content {
    margin: 20px;
    max-height: 90vh;
  }
  
  .nuruk-modal-body {
    padding: 20px;
  }
  
  .nuruk-modal-title {
    font-size: 1.2rem; /* 19.2px - 80% */
    margin-bottom: 12px;
  }
  
  .nuruk-modal-description {
    font-size: 0.8rem; /* 12.8px - 80% */
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .nuruk-modal-meta {
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
  }
  
  .nuruk-modal-meta-label {
    font-size: 0.65rem; /* 10.4px - 80% */
  }
  
  .nuruk-modal-meta-value {
    font-size: 0.75rem; /* 12px - 80% */
  }
}

/* 모바일 세로 (480px 이하) - 약 70% 크기 */
@media (max-width: 480px) {
  .nuruk-special-section {
    padding: 32px 12px 20px 12px;
  }
  
  .nuruk-special-list {
    gap: 20px;
    max-width: 98%;
  }
  
  .nuruk-special-title {
    font-size: 1.4rem; /* 22.4px - 70% */
    margin: 1rem 0;
  }
  
  .nuruk-special-subtitle {
    font-size: 0.8rem; /* 12.8px - 70% */
    margin-bottom: 20px;
  }
  
  .nuruk-special-item {
    padding: 16px 12px;
  }
  
  .nuruk-special-heading {
    font-size: 0.8rem; /* 12.8px - 70% */
    margin-bottom: 3px;
  }
  
  .nuruk-special-desc {
    font-size: 0.7rem; /* 11.2px - 70% */
    line-height: 1.4;
  }
  
  .nuruk-special-number {
    width: 34px;
    height: 34px;
    font-size: 1.05rem; /* 16.8px - 70% */
    left: -17px;
  }
  
  .nuruk-special-content {
    margin-left: 28px;
  }
  
  .nuruk-process-section {
    padding: 40px 12px;
  }
  
  .nuruk-process-title {
    font-size: 1.4rem; /* 22.4px - 70% */
    margin-bottom: 10px;
  }
  
  .nuruk-process-subtitle {
    font-size: 0.8rem; /* 12.8px - 70% */
    margin-bottom: 32px;
    padding: 0 16px;
  }
  
  .nuruk-process-grid {
    gap: 14px;
    padding: 0 12px;
  }
  
  .nuruk-process-image {
    height: 160px;
  }
  
  .nuruk-process-content {
    padding: 16px;
  }
  
  .nuruk-process-name {
    font-size: 0.875rem; /* 14px - 70% */
    margin-bottom: 5px;
  }
  
  .nuruk-process-desc {
    font-size: 0.65rem; /* 10.4px - 70% */
    line-height: 1.4;
    margin-bottom: 10px;
  }
  
  .nuruk-process-details {
    font-size: 0.6rem; /* 9.6px - 70% */
  }
  
  .nuruk-process-step {
    font-size: 0.65rem; /* 10.4px - 70% */
    padding: 4px 8px;
  }
  
  .nuruk-modal-content {
    margin: 12px;
    max-height: 95vh;
  }
  
  .nuruk-modal-body {
    padding: 16px;
  }
  
  .nuruk-modal-title {
    font-size: 1.05rem; /* 16.8px - 70% */
    margin-bottom: 10px;
  }
  
  .nuruk-modal-description {
    font-size: 0.7rem; /* 11.2px - 70% */
    line-height: 1.5;
    margin-bottom: 16px;
  }
  
  .nuruk-modal-meta {
    gap: 10px;
    padding-top: 16px;
  }
  
  .nuruk-modal-meta-label {
    font-size: 0.55rem; /* 8.8px - 70% */
  }
  
  .nuruk-modal-meta-value {
    font-size: 0.65rem; /* 10.4px - 70% */
  }
}

/* 아주 작은 모바일 (360px 이하) - 추가 최적화 */
@media (max-width: 360px) {
  .nuruk-special-title {
    font-size: 1.25rem; /* 20px */
  }
  
  .nuruk-special-subtitle {
    font-size: 0.75rem; /* 12px */
  }
  
  .nuruk-special-heading {
    font-size: 0.75rem; /* 12px */
  }
  
  .nuruk-special-desc {
    font-size: 0.65rem; /* 10.4px */
  }
  
  .nuruk-process-title {
    font-size: 1.25rem; /* 20px */
  }
  
  .nuruk-process-subtitle {
    font-size: 0.75rem; /* 12px */
  }
  
  .nuruk-process-name {
    font-size: 0.8rem; /* 12.8px */
  }
  
  .nuruk-process-desc {
    font-size: 0.6rem; /* 9.6px */
  }
  
  .nuruk-modal-title {
    font-size: 1rem; /* 16px */
  }
  
  .nuruk-modal-description {
    font-size: 0.65rem; /* 10.4px */
  }
}